
正文
PYTHON---FILE IO
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
import pickleshoplistfile = 'shoplist.data'shoplist = ['apple', 'mango', 'carrot']f = open(shoplistfile, 'wb')pickle.dump(shoplist, f)f.close()del shoplistf = open(shoplistfile, 'rb')storedlist = pickle.load(f)print(storedlist)print()poem = '''\Programming is funWhen the work is doneif you wanna make your work also fun: use Python!'''f = open('poem.txt', 'w')f.write(poem)f.close()f = open('poem.txt')while True: line = f.readline() if len(line) == 0: break print(line)f.close()








