在Python中使用json模块的入门问题
黄舟
黄舟 2017-04-18 10:27:47
0
2
706
 #coding:GBK
import json
def getstoredname():
    filename = 'username.json'
    try:
        with open(filename) as f:
            username = json.load(f)
    except:
        return None
    else:
        return username
        
def getnewname():
    username = input("What is your name? ")
    filename = 'username.json'
    with open(filename,'a+') as f:
        json.dump(username,f)
    return username
    
def greetuser():
    username = getstoredname()
    if username:
        print("Welcome back, " + username + "!")
    else:
        username = getnewname()
        print ("We'll remember you when you come back, " + username + 
            "!")

greetuser()


这个问题应该怎么改代码?

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全員に返信(2)
巴扎黑

リーリー


私が回答した質問: Python-QA

いいねを押す +0
黄舟

import json
'''
ユーザー名が以前に保存されている場合は、それをロードして、それがユーザーのユーザー名であるかどうかを尋ねます。そうでない場合は、
ユーザー名を入力して保存するように求めます。
''
ファイル名 = 'username.json'
try:

リーリー

FileNotFoundError を除く:

リーリー
いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート