【发布时间】:2016-10-01 20:24:40
【问题描述】:
您好,我一直在编写这个简单的脚本,但遇到了一些相当烦人的问题,我无法用 def 修复自己。和导入功能它只是行不通。这是主要脚本
import time # This part import the time module
import script2 # This part imports the second script
def main():
print("This program is a calaulater have fun using it")
name = input("What is your name? ")
print("Hello",name)
q1 = input("Would you like to some maths today? ")
if q1 == "yes":
script2 test()
if q1 == "no":
print("That is fine",name,"Hope to see you soon bye")
time.sleep(2)
if __name__ == '__main__':
try:
main()
except Exception as e:
time.sleep(10)
然后第二个脚本被称为 script2 这里也是那个脚本 进口时间
def test():
print("You would like to do some maths i hear.")
print("you have some truely wonderfull option please chooice form the list below.")
这是我目前的脚本,但它不起作用,请帮助我。
【问题讨论】:
-
你遇到了什么错误?
-
尝试
script2.test()而不是script2 test()
标签: python function python-import