Python 练习

1. 题目

从键盘输入一个字符串,将小写字母全部转换成大写字母,然后输出到一个磁盘文件"test"中保存。

2. 分析

3. 实例

点我看答案
string = input('please input a string:')
with open('test.txt', 'w', encoding='utf8') as f:
    f.write(string)

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""