Pytho:json格式读写

使用 json.dump() 来存储

使用 json.load()l来读取

import json

username = input("What is your name? ")

filename = 'username.json‘

with open(filename, 'w') as f_obj:

json.dump(username, f_obj)
 print("We'll remember you when you come back, " + username + "!")

这个程序是存储

import json
filename = 'username.json'
with open(filename) as f_obj:
username = json.load(f_obj)
print("Welcome back, " + username + "!")

这个程序是读取

猜你喜欢

转载自blog.csdn.net/lcqin111/article/details/81350982