我将如何遍历文本文件并存储值。如果我从文本文件hello@aol.com:Password1取一行,我如何将电子邮件存储为hello@aol.com,如何将密码存储为Password1?
file = open("TEST.txt", "r")
for line in file:
print(line)
答案 0 :(得分:0)
This is a useful way to "open files":
with open('TEST.txt', 'r') as f:
f.readlines()
要拆分字符串,可以使用split
方法:
'hello@aol.com:Password1'.split(':')
(split方法将“拆分对象”作为可选参数)
正如Bruno所说,您应该看看string methods