2:Use of if else in PYTHON
Use OF if else in PYTHON
Task
Given an integer, , perform the following conditional actions:
- If is odd, print
Weird - If is even and in the inclusive range of to , print
Not Weird - If is even and in the inclusive range of to , print
Weird - If is even and greater than , print
Not Weird
Complete the stub code provided in your editor to print whether or not is weird.
Input Format
A single line containing a positive integer, .
import math
import os
import random
import re
import sys
n = int(input())
if n % 2 == 1:
print("Weird")
elif n % 2 == 0 and 2 <= n <= 5:
print("Not Weird")
elif n % 2 == 0 and 6 <= n <= 20:
print("Weird")
else:
print("Not Weird")
Comments
Post a Comment