def cap_string(sentence): sentence=‘ ‘.join([i.title() for i in sentence.split()]) return sentence
s=‘‘‘Python is a programming language that lets you work quickly and integrate systems more effectively‘‘‘ print cap_string(s)
输出:
Python Is A Programming Language That Lets You Work Quickly And Integrate Systems More Effectively
时间: 2024-12-16 02:41:27