代码如下
with open(tombstone, 'wr') as fp:
try:
tomb = json.load(fp)
except ValueError as e:
tomb = {"event_id": 0,
"event_sec": 0,
"event_micro": 0}
json.dump(tomb, fp)
tombstone 是一个 json 文件,它是空的时候就会抛出 ValueError 错误,所以我想在 except 中建一个新的,然后写到原来的文件 tombstone 中,但是会在 json.dump 中出现 IOError: [Errno 9] Bad file descriptor 是因为报错就会使得 fp 进行__exit__(),然后被关闭么? 还有就是我这么写符合逻辑么? 我想出的修改方案是下面这样.
with open(tombstone, 'r') as fr:
try:
tomb = json.load(fr)
except ValueError as e:
with open(tombstone, "w") as fw:
tomb = {"event_id": 0,
"event_sec": 0,
"event_micro": 0}
json.dump(tomb, fw)
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.