gpt4 book ai didi

python - 从文件中读取用户名和密码

转载 作者:行者123 更新时间:2023-12-03 07:49:25 31 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to read a file line-by-line into a list?

(28 个回答)


4年前关闭。




如何在 Python 中从文件中逐行读取文本,例如用户名和密码?例如,我可以在 shell/bash 中实现这一点:

#!/bin/bash

AUTH='/authentication/account.txt'
U=$(sed -n 1p ${AUTH})
P=$(sed -n 2p ${AUTH})

在文件/authentication/account.txt 中是我的用户名和密码,如下所示:
username
userpass

最佳答案

您不应将未加密的登录详细信息存储在文本文件中。

但是,无论如何,这是一个非常简单的解决方案:

f=open("/authentication/account.txt","r")
lines=f.readlines()
username=lines[0]
password=lines[1]
f.close()

关于python - 从文件中读取用户名和密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45473003/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com