I had tried to figure out the problem using different techniques, but the problem persist.
#-*-coding:utf8;-*-
#qpy:console
print("Welcome to number checking program")
number = int(input("Please enter the number that you to want check: "))
if number ℅ 2 != 0:
print(f"{number} is an odd number")
elif number % 2 == 0:
print(f"{number} is an even number.")
else:
print(f"Sorry, {number} is an invalid number")
I was expecting the program to display to user the type of number he/she entered.