240 发简信
IP属地:河南
  • python将小写字母全部转换成大写字母,然后输出到一个磁盘文件"test"中保存。

    with open('test.txt','r+') as f: a = input("请输入内容:") a = a.upper() f.write(a) pri...