Ad

Coding Challenge 5

 Coding Challenge 5


This project is available on my channel so do check it out

Question :- If n is in the inclusive range of  to 5 , 10  print Weird


Solution

a = int(input('Enter an integer or a float number'))
if a in range(5,10):
    print(' Weird')




Post a Comment

0 Comments