用Python将一句英文里的每一个单词首字母大写
时间: 2023-05-24 12:04:08 浏览: 259
Java小程序 输入一个字符串,将每一个单词首字母大写
A:
可以使用 Python 内置的 `title()` 方法将一句英文里的每一个单词首字母大写,例如:
```python
s = "this is a sentence."
s_title = s.title()
print(s_title)
# This Is A Sentence.
```
其中,`s` 是原始字符串,`s_title` 是将 `s` 中的每一个单词的首字母大写后得到的新字符串。可以通过 `print()` 函数输出 `s_title` 来查看结果。
阅读全文