如果我使用全局变量。我可以这样写。
while True:
name_str = input('Please give me the file name:')
if name_str == 'table.csv':
break
else:
print('Bad file name, please try again.')
如何定义一个函数并从此函数获取输入?在开始函数中获取用户输入,调用main函数获取用户输入。
def get_name(n):
x = input('Please give me the file name:')
...
...
def main():
...
...