調用內置的open函數打開文件,傳遞兩個參數:文件路徑(絕對路徑或相對路徑),打開模式('r':讀,'r+':讀寫,'w':寫,'b':二進位): f = open('data.txt','w') f.write('Hello world') f.close() f = open('data.txt ...
調用內置的open函數打開文件,傳遞兩個參數:文件路徑(絕對路徑或相對路徑),打開模式('r':讀,'r+':讀寫,'w':寫,'b':二進位):
f = open('data.txt','w')
f.write('Hello world')
f.close()
f = open('data.txt','r')
str = f.read()
f.close()
print(str)