1 | number = input("What is your favourite number?") |
2 | print("It is", number + 1) # error: Unsupported operand types for + ("str" and "int") |
Utoljára aktív
1 | number = input("What is your favourite number?") |
2 | print("It is", number + 1) # error: Unsupported operand types for + ("str" and "int") |