PTA7-3 单词首字母大写
时间: 2023-12-10 19:02:55 浏览: 158
6-3 Deque_pta_C++_6-3deque_
5星 · 资源好评率100%
以下是Python实现单词首字母大写的代码:
```python
s = input() # 输入句子
result = ""
for sentence in s.split("."): # 以句号为分隔符分割句子
for sub_sentence in sentence.split("?"): # 以问号为分隔符分割子句
for sub_sub_sentence in sub_sentence.split("!"): # 以感叹号为分隔符分割子子句
if sub_sub_sentence.strip() != "": # 去除空格后判断是否为空
result += sub_sub_sentence.strip()[0].upper() + sub_sub_sentence.strip()[1:] + " " # 将首字母大写后加入结果字符串
print(result[:-1]) # 输出结果字符串,去除最后一个空格
```
阅读全文