第 12 屆 iThome 鐵人賽
分享至
介紹Python所使用基本IO的功能,包括一些函數使用。
strInput = input("請輸入:"); print ("輸入內容:", strInput);
# 開啟一個檔案 fo = open("IO.txt", "w") fo.write(strInput); # 關閉檔案 fo.close()
IT邦幫忙