-->

Python If-Else - Hacker Rank Solution




Hello Friends

рдЖрдЬ рд╣рдо рдЖрдкрдХो Hacker Rank рдкрд░ Python If-Else рдХा рдХंрдк्рд▓ीрдЯ рд╕ॉрд▓्рдпूрд╢рди рдмрддाрдПंрдЧे рд╡рд╣ рднी рдЖрд╕ाрди рднाрд╖ा рдоें। рддो рджोрд╕्рддों рдЪрд▓िрдП рдЬाрдирддे рд╣ैं рд╕ॉрд▓्рдпूрд╢рди ।


Problem- Python If-Else - Hacker Rank Solution



Tutorial:-


рдпрд╣ рдиीрдЪे рджिрдП рдЧрдП Picture рдоें рдЖрдкрдХो If or Else  рдХे рдмाрд░े рдоें рдЕрдиुрдоाрди рд╣ो рдЬाрдПрдЧा рдЬिрд╕рд╕े рдЖрдк If рдФрд░ Else рдХो  рдЖрд╕ाрдиी рд╕े рд╕рдордЭ рд╕рдХрддे рд╣ैं ।




рдЕрдЧрд░ рдЖрдк If рдФрд░ Else рдХो рдбिрдЯेрд▓ рдоें рд╕рдордЭрдиा рдЪाрд╣рддे рд╣ैं рддो рд╣рдордиे рдкрд╣рд▓े рд╕े рд╣ी рдПрдХ рдЯ्рдпूрдЯोрд░िрдпрд▓ (Tutorial) рдмрдиाрдпा рд╣ै । рддो рдЬाрдирдиे рдХे рд▓िрдП рдиीрдЪे рджी рдЧрдИ рд▓िंрдХ рдкрд░ рдХ्рд▓िрдХ рдХрд░ें।



Task:-


Given an integer ,n, 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



Input Format:-

A single line containing a positive integer, n.



Constraints:-

  • < n < 100

Output Format:-

Print Weird if the number is weird. Otherwise, print Not Weird.



Sample Input 0 : -

3


Sample Output 0 :-

Weird



Explanation 0 : -


n=3

n is odd and odd numbers are weird, so print Weird.



Sample Input 1 :-


24


Sample Output 1 :-


Not Weird




Explanation 1:-

n=24

n>20 and n is even, so it is not Weird



Solution:-

import math
import os
import random
import re
import sys

if __name__ == '__main__':

  n = int(input().strip())

  if n%2==1 or n%2==0 and n>=6 and n<=20:

    print("Weird")

  else:

    print("Not Weird")



Video Tutorial:








DISCLAIMER:-

The above hole problem statement is given by hackerrank.com but the solution is generated by the Apna Hindi Tech authority if any of the query regarding this post or website fill the following contact form. 


Thank you ЁЯШК

рдпрд╣ рднी рдкрдв़ें

Post a Comment