赞
踩
#10-1Python学习笔记 file_path = 'E:\python_work\example\learing_python.txt' with open(file_path) as file_object: #print(file_object.read()) lines = file_object.readlines() # for line in lines: # print(line.rstrip()) string = '' for line in lines: string += line.rstrip() print(string) #10-2 C语言学习笔记 string = '' for line in lines: string += line.replace('Python','C') print(string) #10-4访客名单 user_infor = input('Please enter your name: ') print("Hello, " + user_infor.title()) file_path = 'E:\python_work\example\guest_book.txt' with open(file_path,'a') as file_object: file_object.write(user_infor.title() + 'has a visist your space\n') #10-5关于编程的调查 filename = 'reason_book.txt' responses = [] while True: response = input("\nWhy do you like programming? ") responses.append(response) continue_poll =
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。