如何在python中用冒号分隔文本文件中的字符串?

时间:2019-05-22 12:54:14

标签: python file text

我将如何遍历文本文件并存储值。如果我从文本文件hello@aol.com:Password1取一行,我如何将电子邮件存储为hello@aol.com,如何将密码存储为Password1?

file = open("TEST.txt", "r")

for line in file:
    print(line)

1 个答案:

答案 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