import json
with open("login_data.txt", "r") as login_file:
try:
users = json.load(login_file)
except:
users = {}
最近,我正在爲我的代碼進行演示。但是,我的講師要求我將代碼分解成僞代碼。在Python代碼中替換「with」語句
我找不到任何符合with
語句的僞代碼術語。我需要找到可替代上述with
聲明的替代解決方案。
#i suppose it should look like this:...
def dummyname(login_file):
login_file = process open("login_data.txt","r")
while
users != {}
do
users = process json.load(login_file)
process dummyname(login_file)
#is it something like this?
頂尖提示:裸露'除非:'是非常糟糕的做法。 – jonrsharpe
@jonrsharpe'除了ValueError:'應該正確嗎? –