python定义一个函数,实现将一串字符串中的小写字母转换为大写字母,主程序中输入任
时间: 2024-01-05 08:00:40 浏览: 149
python实现从键盘输入一个字符串,将小写字母全部转换成大写字母,然后输出到一个磁盘文件"test"中保存
5星 · 资源好评率100%
可以使用Python中的内置函数`upper()`来实现将字符串中的小写字母转换为大写字母。以下是示例代码:
```python
def convert_to_uppercase(string):
# 使用upper()函数将字符串中的小写字母转换为大写字母
converted_string = string.upper()
return converted_string
if __name__ == "__main__":
# 主程序中输入任意字符串作为输入
input_string = input("请输入一串字符串: ")
# 调用函数将字符串中的小写字母转换为大写字母
converted_string = convert_to_uppercase(input_string)
# 输出转换后的字符串
print("转换后的字符串为: ", converted_string)
```
运行以上代码,主程序会要求用户输入一串字符串,并将其中的小写字母转换为大写字母后输出。
例如,输入字符串为`"Hello, World!"`,则输出结果为`"HELLO, WORLD!"`。
阅读全文