题目:
7.1 Write a program that prompts for a file name,
then opens that file and reads through the file,
and print the contents of the file in upper case.
Use the file words.txt to produce the output below.
You can download the sample data at http://www.py4e.com/code3/words.txt
解答:
#Use words.txt as the file name
fname = input("Enter file name: ")
fh = open(fname) #获得的是一序列的值,全部的值
print(fh)
#获得的只是一个object类型的,输出为:
#<_io.TextIOWrapper name=‘words.txt’ mode=‘r’ encoding=‘cp936’>
#for line in raw_file:
for line in fh: #获得的是文件中每一行的值
line = line.upper().rstrip(); #对每一行中的值都做大写和去掉右空格的操作
print(line) #一行一行输出
本文介绍了一个简单的Python程序,该程序提示用户输入文件名,然后读取文件内容并将其转换为大写形式输出。使用了Python的基本文件操作方法,并以words.txt为例进行了演示。

4157

被折叠的 条评论
为什么被折叠?



