1 Star 2 Fork 2

Yonja/python100

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
python98.py 412 Bytes
Copy Edit Raw Blame History
zhangweizhi authored 9 years ago . the 100 theme
#!/usr/bin/python
# -*- coding: UTF-8 -*-
"""
题目:从键盘输入一个字符串,将小写字母全部转换成大写字母,然后输出到一个磁盘文件"test"中保存。
"""
if __name__ == '__main__':
fp = open('test.txt','w')
string = raw_input('please input a string:\n')
string = string.upper()
fp.write(string)
fp = open('test.txt','r')
print fp.read()
fp.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yonja/python100.git
git@gitee.com:yonja/python100.git
yonja
python100
python100
master

Search