Coding Challenge 2
This Challenge is available on my channel 
Ques: Question: Given an integer n, perform the following conditional If n is odd, print Weird 
Reference Video
Solution
n = int(input('Enter an Integer'))
if (n%2)==1:
    print('Weird')
Mysterious radio waves are radiating from an unknown object at the heart of the Milky …
0 Comments