大家好,
目前看彭彭老师的youtube videos学习python,目前学习到if判断式
我跟着老师打的程式出现了错误无法正确跑完,烦请大家教导我哪里出错,谢谢
以下为程式码
x=int(input('enter a number: '))
y=int(input('enter a number: '))
op=input('enter an operator: +, -, *, /: ')
if op=='+':
print(x+y)
elif op=='-':
print(x-y)
elif op=='*':
print(x*y)
elif op=='/':
print(x/y)
else:
print('not an operator')
输入完两个数值及运算子后,出现以下讯息,
enter a number: 6
enter a number: 8
enter an operator: +, -, *, /: /
Traceback (most recent call last):
File "condition2.py", line 3, in <module>
op=input('enter an operator: +, -, *, /: ')
File "<string>", line 1
/
^
SyntaxError: unexpected EOF while parsing
请问我改如何修改让程式继续跑下去呢?
谢谢