用户输入并在Python中检索它

时间:2016-08-30 20:35:00

标签: python python-2.7 python-3.x

我目前正在尝试在python中使用两个模块,我试图让一个模块接受用户输入并存储它。但我无法想象如何从输入模块中检索数据。我已导入所有内容,但这只是从输入模块中的def再次运行我的输入。下面是我的输入模块的示例。如何从用户返回此值并在我的其他模块中使用它来进行计算?

def test():
   test = int(input("numbers:"))
   return test

1 个答案:

答案 0 :(得分:3)

我假设您的意思是使用两个文件,并且需要在另一个文件中使用测试函数中的信息。然后,假设您测试的文件名是testfile.py,我会选择:

import testfile
num = testfile.test() # This will store the number recieved in the test() function in the variable num
print('Recieved number from user:', num)