我对python很新,我正在努力寻找我的问题的答案。我正在使用API来获取服务器凭据,它以列表格式返回。
[{u'Username': u'root', u'Message': u'Server credentials retrieved', u'Password': u'P@$$w0rd!', u'Success': True, u'StatusCode': 0]
如果我只想从中获取密码值并将其保存到文件中,该怎么办?
答案 0 :(得分:0)
只是:
the_password = the_list[0]['Password']
file = open('filename.txt', 'w')
file.write(the_password)
file.close()