Python 檔案讀寫(File I/O) 7月 30 2021 my_file = open('your_file.txt')text = my_file.read()print(text) # hello worldmy_file.close() 閱讀更多......