Mypy-1.py
· 135 B · Python
Sin formato
number = input("What is your favourite number?")
print("It is", number + 1) # error: Unsupported operand types for + ("str" and "int")
1 | number = input("What is your favourite number?") |
2 | print("It is", number + 1) # error: Unsupported operand types for + ("str" and "int") |