Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box 🎁☑️
Download Telegram
#check if the number is even or odd

num=float(input("Enter the Number:"))

if num%2 == 0 :
print("Number is Even ")
else:
print("Number is Odd")
#check if the number is even or odd

num=float(input("Enter the Number:"))

if num%2 == 0 :
print("{0} is Even ".format(num))
else:
print("{0} is Odd".format(num))