로딩
요청 처리 중입니다...

해커랭크 Practice Python If-Else

 해커랭크 Practice Python If-Else

문제 Given an integer,n, perform the following conditional actions: If n is odd, print Weird If n is even and in the inclusive range of 2 to 5, print Not Weird If n is even and in the inclusive range of to 20, print Weird If n is even and greater than 20, print Not Weird 풀이 #!/bin/python3 import math import os import random import re import sys if __name__ == '__main__': n = int(input().strip()) if n%2==1: print ('Weird') elif n>=2 and n<=5: print ('Not Weird') elif n>=6 and n<=20: print ('Weird')...