鱼C论坛

 找回密码
 立即注册
查看: 2342|回复: 4

python怎么读取有多个值的json文件报错

[复制链接]
发表于 2020-9-12 00:37:44 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
username.json文件只有一个值使用json.load()程序可以正常运行,但是username.json有多个值就报错

报错信息:
    raise JSONDecodeError("Extra data", s, end)
json.decoder.JSONDecodeError: Extra data: line 1 column 15 (char 14)

源码:
import json
def my_greet_user():
    filename = 'username.json'

    try:
        input_name = input('你叫什么名字!\n')
        with open(filename) as f:
            username = json.load(f)

    except FileNotFoundError:
        print('新用户你好!欢迎你加入我们')
        username = input_name
        with open(filename,'w') as f:
            json.dump(username,f)
            print('你提供的名字已记录!')
    else:
        if input_name != username:
            with open(filename, 'w') as f:
                json.dump(input_name, f)
                print('你好'+input_name+'!')
                print('你已经成为我们的一员!')
        else:
            print(input_name+'你好!欢迎你回来!')

my_greet_user()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-12 00:58:45 | 显示全部楼层
json文件不发一下看看吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-9-12 13:46:23 | 显示全部楼层
kogawananari 发表于 2020-9-12 00:58
json文件不发一下看看吗

json文件就是写入的用户名
"\u675c\u752b""\u675c\u752b"
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-12 16:34:42 | 显示全部楼层
淡淡凉 发表于 2020-9-12 13:46
json文件就是写入的用户名
"%u675c%u752b""%u675c%u752b"

用列表存不好吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-9-13 11:17:30 | 显示全部楼层

用列表可以,没有报错了
def my_greet_user():
    filename = 'username.json'
    usernames = []
    try:
        input_name = input('你叫什么名字!\n')
        with open(filename) as f:
            usernames = json.load(f)

    except FileNotFoundError:
        print('新用户你好!欢迎你加入我们')        
        usernames.append(input_name)
        with open(filename,'w') as f:
            json.dump(usernames,f)
            print('你提供的名字已记录!')
    else:
        if input_name not in usernames:
            usernames.append(input_name)
            with open(filename, 'w') as f:
                json.dump(usernames, f)
                print('你好'+input_name+'!')
                print('你已经成为我们的一员!')
        else:
            print(input_name+'你好!欢迎你回来!')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 16:53

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表