标签: python python-2.7 input calculator operations
op = input("Enter your operation") print(op)
当我用终端使用" python first.py"编译程序时我收到以下错误:
但是当我使用" python3 first.py"运行程序时没有错误,当我打印出op时,我得到了正确的操作。为什么会发生这种情况,以及给我错误的版本有什么不同?谢谢你们的解释!