day14-作业
第一题:
name=input('请输入学生姓名:')
number=input('请输入学生号码:')
dict1=eval(open('file/stu.txt').read()) # type:dict
dict1[name]=number
print(dict1)
open('file/stu.txt',mode='w').write(f'{str(dict1)}') #{'df': '16', 'sv': '66'}
第二题:
def register():
user=input('输入用户名:')
num=input('输入号码:')
message=eval(open('file/a.txt').read())
if user in [i['username'] for i in message]:
print('注册失败!该账号已经被注册
day14-作业最先出现在Python成神之路。
共有 0 条评论