def get_text_filename():
'''() -> str
Return the name of the file containing the plaintext or cipher text.
'''
return input("Enter the file to read: ")
第一次输入文件名后,我希望能够调用输入的文件名是什么。我该怎么做呢?
def get_text_filename():
'''() -> str
Return the name of the file containing the plaintext or cipher text.
'''
return input("Enter the file to read: ")
第一次输入文件名后,我希望能够调用输入的文件名是什么。我该怎么做呢?