python簡單讀取文件案例

讀取文件 my_file = open('my file.txt','r') #讀取文件 r代表智能讀去 my_file = open('my file.txt','w') #w代表既能讀也能寫 測試小Demo text = "GxsDay" my_file = open('my file.txt','w') my_file.write(text) my_file.close() 用完需要關上m
相關文章
相關標籤/搜索