1、文件读取

想要读取文件中的数据,首先要打开文件(文件已存在)。

open(filename, mode)
    类体
mode:模式
    r :以只读方式打开
    rw:以读写方式打开

示例:

f = open ( 'test.py', 'r')

注意:

只能打开下载到开发板中的文件。

示例:

print(f.read())

读取完成后,记得使用close()关闭文件,释放资源。

示例:

f.close()

综合示例:

>>> f = open('test.py', 'r')
>>> print(f.read())
import time
from machine import Pin
led=Pin(2,Pin.OUT)       

while True:
  led.value(1)            
  time.sleep(0.5)
  led.value(0)           
  time.sleep(0.5)
>>> f.close()

2、文件写入

向文件中写入数据同样要先打开文件(文件已存在)。

f = open(filename, mode)

然后向文件中写入数据。

fd.write(str)

示例:

fd.write('hello muPython')

最后不要忘了关闭文件以释放资源。

f.close()

综合示例:

>>> f = open('test.py', 'w')
>>> f.write('#muPython')
8
>>> f.close()
>>> f = open('test.py', 'r')
>>> print(f.read())
#muPython
>>> f.close()

注意:

向一个已经存在内容的文件写入数据时,会覆盖原来的内容。