用python去生成Hello World! 大写转小写,小写转大写的代码
时间: 2023-04-07 16:04:22 浏览: 176
change_big_to_small.zip_Big!
可以使用以下代码实现:
```python
# 生成Hello World!
print("Hello World!")
# 大写转小写
string = "HELLO WORLD!"
print(string.lower())
# 小写转大写
string = "hello world!"
print(string.upper())
```
输出结果为:
```
Hello World!
hello world!
HELLO WORLD!
```
阅读全文