python 12 文件file 讀寫文件練習題(從鍵盤讀字符)

練習1:從鍵盤輸入一些字符,逐個把它們寫到磁盤文件上,直到輸入一個 # 爲止。web fp = open('F:\\123.txt',"w") ch = input('輸入字符串:\n') while ch != '#': fp.write(ch) fp.write(ch) ch = input('') fp = open('F:\\123.txt',"r") line =
相關文章
相關標籤/搜索