假设有一个英文文本文件,编写程序读取其内容,并将其中的小写字母变成大写字母,用python
时间: 2024-05-14 13:15:48 浏览: 104
Python写的英文字符大小写转换代码示例
5星 · 资源好评率100%
可以这样实现:
```
with open('file.txt', 'r') as f:
content = f.read()
content_upper = content.upper()
with open('file_upper.txt', 'w') as f:
f.write(content_upper)
```
其中,`file.txt`是要读取的文本文件路径,`file_upper.txt`是将大写字母写入的新文件路径。`with open() as`语句可以保证在读取完毕后关闭文件,避免文件泄漏。`content.upper()`可以将字符串中的小写字母变成大写字母。最后,将新内容写入新文件即可。
阅读全文