使用和输入字符串来查找文本文件中的元组

时间:2015-10-07 02:32:47

标签: python-3.x optimization

到目前为止,这是我的代码。我试图从用户那里获得一个输入,以便在我的源代码中搜索3个部分的元组。但我无法弄清楚如何允许用户通过输入找到代码并给它们元组。如果将name变量更改为'Fred',则可以轻松找到它,但代码需要用户输入。非常感谢所有帮助。

def details():
   countries = []
    file = open('file.txt', mode='r', encoding='utf-8')
    file.readline()
    for line in file:
        parts = line.strip().split(',')
        country = Country(parts[0], parts[1], parts[2])
        countries.append(country)
    file.close()
    with open('file.txt', encoding='utf=8') as countries:
        for country in countries:
            name=str(input('enter:'))
            if str(name) in country:
                print(country)

0 个答案:

没有答案