Python3 Read 方法 Python3 Write 方法 Python3 文件File位置 Python3 Read 方法 #!/usr/bin/python3 # Open a file fo = open("foo.txt", "r+") str = fo.read(10) print ("Read String is : ", str) # Close opened file fo.close() Python3 Write 方法 Python3 文件File位置