没有提示就获取输入值

时间:2013-08-01 23:01:22

标签: python

def get_text_filename():
    '''() -> str

       Return the name of the file containing the plaintext or cipher text.
    '''

    return input("Enter the file to read: ")

第一次输入文件名后,我希望能够调用输入文件名的内容。我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以将结果存储到变量中:

filename = get_text_filename()
print filename

然后,您可以使用此filename变量获取用户输入的字符串。