如何从main方法自动启动程序

2024-04-16 06:40:30 发布

您现在位置:Python中文网/ 问答频道 /正文

这是我的密码

def main():
    # This code reads in data.txt and loads it into an array
    # Array will be used to add friends, remove and list
    # when we quit, we'll overwrite original friends.txt with
    # contents 

    print"Welcome to the program"

    print "Enter the correct number"
    print "Hockey fan 1, basketball fan 2, cricket fan 3"
    choice = input("Select an option")

    while choice!=3:
        if choice==1:
            addString = raw_input("Who is your favorite player??")
            print "I love Kessel"
        elif choice==2:
            remInt = raw_input("Do you think that the Cavaliers will continue ther loosing ways?")
            print "I think they can beat the Clippers"
        else:
             "You must choose a Number (1,2 or 3)"
    print "Cricket is a great sport"
    choice = input("Select an option")



    inFile = open('data.txt','r')
    listNumbers = []
    for numbers in inFile:
        listNumbers.append(numbers)
        print numbers
    inFile.close()

if __name__ == "__main__":
    main() # will call the 'main' function only when you execute this from the command line.

Tags: andthetointxtaninputdata
3条回答

你应该试试下面的

if __name__ == "__main__":
    main()

完成后,您应该从命令行调用程序,如下所示(假设您在Linux/Mac上)

python <your_prog>

如果你给出你所得到的确切的错误,这也会很有帮助。 还要确保所有缩进都正确。

添加:

if __name__ == "__main__":
    main()

到文件的末尾

添加:

if __name__ == "__main__":
    main()

到脚本(一直缩进到左边;不是作为main()函数的一部分)。

相关问题 更多 >