with open('/path/to/file', 'r') as f: print(f.read()) ... f = open('E:\python\python\test.txt', 'w') >>> f.write('Hello, python!') > ...
確定! 回上一頁