#10-1 练习 # 10-1 Python学习笔记 : 在文本编辑器中新建一个文件, 写几句话来总结一下你至此学到的Python知识, # 其中每一行都以“In Python you can”打头。 将这个文件命名为learning_python.txt, # 并将其存储到为完成本章练习而编写的程序所在的目录中。 编写一个程序, 它读取这个文件, 并将你所写的内容打印三次: # 第一次打印时读取整个文件; 第二次打印时遍历文件对象; 第三次打印时将各行存储在一个列表中, 再在with 代码块外打印它们。 #1第一次打印时读取整个文件 with open("text_files/learning_python.txt") as file_object: contents = file_object.read() #read()读取整个文件 print("----1----") print(contents) #2第二次打印时遍历文件对象 print("----2----") with open("text_files/learning_python.txt") as file_object: for line in file_object: #逐行读取 print(line.rstrip()) #3第三次打印时将各行存储在一个列表中, 再在with 代码块外打印它们 print("----3----") with open("text_files/learning_python.txt") as file_object: lines = file_object.readlines() #读取文件的每一行,并存储为一个列表 for line in lines: print(line.rstrip()) # 10-2 C语言学习笔记 : 可使用方法replace() 将字符串中的特定单词都替换为另一个单词。 下面是一个简单的示例, # 演示了如何将句子中的'dog' 替换为'cat': # >>> message = "I really like dogs." # >>> message.replace('dog', 'cat') # 'I really like cats.' # 读取你刚创建的文件learning_python.txt中的每一行, 将其中的Python都替换为另一门语言的名称, 如C。 # 将修改后的各行都打印到屏幕上。 print("----3----") with open("text_files/learning_python.txt") as file_object: lines = file_object.readlines() #读取文件的每一行,并存储为一个列表 for line in lines: lines = line.replace('Python', 'c') print(lines) # 10-3 访客 : 编写一个程序, 提示用户输入其名字; 用户作出响应后, 将其名字写入到文件guest.txt中。 name = "Please enter your name:" with open("guest.txt", 'w') as file_object: file_object.write(input(name)) with open("guest.txt") as file_object: </