Skip to main content
Search
Search This Blog
learn coding
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
September 15, 2022
write python program to check whether a number entered by user is even or odd
num=int(input("enter a number"))
if num%2==0:
print("number is even")
else:
print("nuber is odd")
Comments
Popular Posts
September 25, 2022
automate the boring stuff with python book pdf
September 23, 2022
intro to python book (for computer science and data science)pdf download
Comments
Post a Comment