Last Call! We pause shipping on Feb 14th. Order NOW to get your gear shipped before the holiday!
file = open ("myTestFile.txt", "w") print(type(file))

file.write("Writing content from MicroPython")

file.close()
import os os.listdir()

os.rename('myTestFile.txt', 'testFile.txt') os.listdir()
