python版解题
2025-11-27 17:01:29
发布于:北京
3阅读
0回复
0点赞
python版解题
def main():
# 读取输入字符串
input_str = input().strip()
# 使用upper()方法将小写字母转换为大写
result = input_str.upper()
# 输出结果
print(result)
if __name__ == "__main__":
main()
这里空空如也

有帮助,赞一个