會自動生成json型別的檔案
import json
def greet_user():
'''問候使用者,並指出其名字'''
file_name = 'username.json'
try:
with open(file_name) as f_obj:
username = json.load(f_obj)
except FileNotFoundError:
username = input("what is your name?")
with open(file_name,'w') as f_obj:
json.dump(username,f_obj)
print("we'll remeber you when you come back,"+username+"!")
else:
print("Welcome back,"+username+"!")
#呼叫函式
greet_user()
複製程式碼
執行結果圖片如下:
參考資料:OLIVER的部落格