解析时发生意外的EOF-Python

时间:2019-02-21 20:54:21

标签: python eof

我不确定我的代码是什么问题,但是尝试通过我的try和except代码时,出现错误“解析时出现意外的EOF”。 这是引起问题的代码: `

def main():
    t = False
    while t != True:
        print('1) Addition\n')
        print('2) Subtraction\n')
        print('3) Division\n')
        print('4) Multiplication\n')
        print('5) Exponential\n')
        print('6) Exit\n')

        choice = input('Enter choice (from 1-6): ')
        try:
            send = input('Enter numbers (seperate by space: ')
            a, b = send.split(' ')
            a = int(a)
            b = int(b)
        except TypeError:
            print('Invalid Input')

main()

`

感谢您的帮助。谢谢。

0 个答案:

没有答案