Coding Challenge 3
Ques: Given an integer n, perform the following conditional
If n is even, print Not Weird [5]
Guys this video is available on my channel so do check it out
Solution
n = int(input('Enter an Integer'))
if (n%2)==:1
print(' Not Weird')
We are done with our 3rd coding challenge
0 Comments