编写程序,从键盘上输入一句英文语句,把其中字母大小写互换。
时间: 2024-05-14 13:12:57 浏览: 165
汇编 从键盘输入一串英文字母,分别将其转换为大写、小写并输出
4星 · 用户满意度95%
好的,这个问题很简单,请看下面的代码:
```python
# 输入英文语句
sentence = input("请输入英文语句:")
# 字母大小写互换
new_sentence = ""
for char in sentence:
if char.isupper():
new_sentence += char.lower()
elif char.islower():
new_sentence += char.upper()
else:
new_sentence += char
# 输出语句
print("新的语句为:", new_sentence)
```
希望能够帮到你!接下来,你想问什么呢?
阅读全文