Python数据的存储和读取 学习笔记
"""存储数据"""# 使用模块json存储数据# 防止程序停止运行时用户数据丢失import jsonnumbers = [2, 3, 4, 5]filename = 'numbers.json'with open(filename, 'w') as f_obj: # 写入模式 json.dump(numbers, f_obj)import jsonfil...