DAY 1 of PYTHON top 100 questions : from Basic to Advanced !!
Question for DAY 1 : Write a Python program that accepts a number from the user and determines whether it is even or odd : n=int(input("Enter the number")) if n%2 == 0: print("Number is Even") else : print("Number is ODD") Output : Enter th...


