编写一个函数,输入一个字符串,输出该字符串中每个单词的首字母大写的字符串。示例:输入:"hello world" 输出:"Hello World"
时间: 2024-05-12 07:16:58 浏览: 63
Java小程序 输入一个字符串,将每一个单词首字母大写
好的,我可以为您编写这个函数。以下是 Python 代码实现:
```python
def capitalize_words(string):
# 将字符串按空格分割成单词列表
words = string.split(" ")
# 遍历单词列表,对每个单词进行首字母大写操作
capitalized_words = [word.capitalize() for word in words]
# 将单词列表拼接成字符串并返回
return " ".join(capitalized_words)
```
您可以将这个函数复制粘贴到您的 Python 环境中使用。例如:
```python
string = "hello world"
output = capitalize_words(string)
print(output) # 输出:"Hello World"
```
希望这个函数能够满足您的需求。如果您有其他问题,欢迎随时向我提问。
阅读全文