If Else Conditional Statements in Python | Python Tutorial in Hindi 9

Поделиться
HTML-код
  • Опубликовано: 5 ноя 2024

Комментарии • 89

  • @vandanapatil8182
    @vandanapatil8182 2 месяца назад +5

    Sir next level series hai yee
    We want same type of series in
    Excel, SQL, Power BI, Maths etc ...,
    With real world projects and interviews questions and answers sir 😊

  • @farhanakhtar4171
    @farhanakhtar4171 2 месяца назад +4

    Yeahhhh finally video aa gyi❤ .
    Jiska mujhe tha intezar jiske liye dil tha bekarar wo ghadi aa gyi aa gyi...

  • @bishtji-em2zt
    @bishtji-em2zt 2 месяца назад +1

    next level Rishabh sir. LOVE you sir

  • @sushant8469
    @sushant8469 2 месяца назад +1

    Amazing series, even non-IT people can learn from it. Well done bro

  • @SushilKumar-z4o1m
    @SushilKumar-z4o1m 2 месяца назад +1

    Hat's off to you Rishab.
    What a great job you're doing.
    Very helpful playlist to learn Python in an easy way.
    The main points to be focused for your videos are,
    Calm & quit with no hurry and in very effective way of teaching so that even a beginner( like me) feels it is very easy to learn tech skills.
    Thank you very much.

  • @MalikaaPremi1176
    @MalikaaPremi1176 2 месяца назад +2

    Thank you sir...U are the best may god fulfill all your wishes ❤❤❤❤❤

  • @sandipanghosh82
    @sandipanghosh82 2 месяца назад +1

    Just awesome.. just the right pace and easy way for everyone. looking forward to the next tutorial.

  • @hindustanibhai8372
    @hindustanibhai8372 2 месяца назад +4

    You are BEST ❤

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  2 месяца назад

      Glad you liked the content ✅️

    • @sudeviofficial
      @sudeviofficial 2 месяца назад

      Congratulations Rishabh bhaiya on 300K, India ka top youtube channel for data analytics 🎉🎊

  • @Erdeepak510
    @Erdeepak510 2 месяца назад +1

    This series is so amazing and the way of teaching is also great.
    Thank you Rishabh bhai

  • @_____shiv
    @_____shiv 2 месяца назад +4

    Thanks sir❤❤❤❤❤

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  2 месяца назад +1

      Glad you liked ✅️

    • @_____shiv
      @_____shiv 2 месяца назад

      @@RishabhMishraOfficial
      Thanks sir
      Sir make a video for data analytics roadmap for 2024

  • @xtravengersgaming
    @xtravengersgaming 2 месяца назад +2

    Sunday Special python video!! abhitak ka lamba video hai yeh (filal) 🙂 !! many congo for 300k bro

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  2 месяца назад +1

      Glad you liked ✅️ thank you so much ❤️🚀

    • @xtravengersgaming
      @xtravengersgaming 2 месяца назад

      @@RishabhMishraOfficial keep growing bro!! and pls pls never stop this DA videos, hume chiaye apkey jaisa koi jo hume bataye yeh sab. thanks again

  • @Mrdip-pal
    @Mrdip-pal 2 месяца назад +1

    Sir, thanks for Python course ❤❤❤❤❤❤

  • @MaxGaming__007
    @MaxGaming__007 2 месяца назад +1

    Congratulations bhaiya for 3 lakh subs 🎉

  • @rohitpandhare5304
    @rohitpandhare5304 2 месяца назад +1

    We waited a lot for next vdo sir🤗

  • @Arvindraj-os9ep
    @Arvindraj-os9ep 2 месяца назад

    thanks sir g happy teacher day

  • @Saubhagyaranjan_Sahu
    @Saubhagyaranjan_Sahu 2 месяца назад +1

    Congratulations Brother for 300k😇

  • @xtravengersgaming
    @xtravengersgaming 2 месяца назад +4

    year = int(input("Enter a year to check if year is leap year or not: "))
    if (year % 4 ==0) or (year % 400==0 ):
    print(f"{year} is leap year ")
    elif year % 100 !=0:
    print(f"{year} is not a leap year")
    hope this is correct

  • @SunilKumar-un3gr
    @SunilKumar-un3gr 2 месяца назад +1

    thanks bro

  • @sonukumar-x2i2f
    @sonukumar-x2i2f 24 дня назад +1

    year = int(input("enter you year: "))
    if (year % 400==0) or (year%4==0)or(year%100==0):
    print("this is leap year")
    else:
    print("this is normal year")

  • @Shivanshbhandari_001
    @Shivanshbhandari_001 Месяц назад +1

    #programme for leap year -:
    a=int(input("enter the year:"))
    if a%4==0:
    print("it is leap year ")
    else:
    print("not a leap year")

  • @nareshbista247
    @nareshbista247 Месяц назад +1

    year=int(input("Enter a year"))
    if year%4==0:
    print("leap year")
    else:
    print("not a leap year")

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  Месяц назад

      Code is correct but need to update the leap tear logic

    • @nareshbista247
      @nareshbista247 Месяц назад

      @@RishabhMishraOfficial year=int(input("Enter the year: "))
      if year%4==0 and year%100!=0 or year%400==0:
      print(f"{year} is a leap year")
      else:
      print(f"{year} is a not leap year")

  • @arneshguru4263
    @arneshguru4263 Месяц назад

    number = int(input("enter a number: "))
    if (number >0):
    if (number % 2 == 0):
    print("the number is positive and even")
    else:
    print ("the number is positive and odd")
    elif (number==0):
    print ("the number is zero")
    else:
    print ("the number is negative")

  • @Altaf_Alam
    @Altaf_Alam Месяц назад +1

  • @akashshelke1475
    @akashshelke1475 Месяц назад

    Rishabh bhai numpy aur pandas par kab daloge video and kuch ek esa video jo python use for data analytics purpose ho please batana bhai I am studying only with the Help of your videos
    Thanks

  • @anshusah4384
    @anshusah4384 2 месяца назад

    num2 = int(input("Enter a year: "))
    if num2 % 2 == 0:
    print("This is not a leap year")
    else:
    print("This is a leap year")

  • @shitalmohapatra3168
    @shitalmohapatra3168 2 месяца назад

    When will you be creating Tableau end to end project?

  • @SagarGavhane0308
    @SagarGavhane0308 2 месяца назад +1

    Hi Rishabh, Below is my code for 2nd assignment.
    Correct me if it is wrong.
    year = int(input("Enter the year = "))
    if (year/4==0) or (year/400==0):
    print("This is leap year")
    elif year/100:
    print("This is not leap year")
    else:
    print("This is not leap year")

  • @rahulPal-mq6xk
    @rahulPal-mq6xk 2 месяца назад +1

    ❤❤❤

  • @xtravengersgaming
    @xtravengersgaming 2 месяца назад +1

    value = None
    if value:
    print("Value is True")
    else:
    print("Value is False")
    it will print False, because None is like giving 0 or empty value. so it will print False

  • @iranilayek6769
    @iranilayek6769 Месяц назад +1

    # Leap Year Checker
    Y = int(input("Enter the year you want to check: "))
    Year = Y%4
    Status = "Leap year" if Year == 0 else "Not a Leap Year"
    print(Status)

  • @CricketTalesHindi
    @CricketTalesHindi 28 дней назад

    # Ques. 1 - what is expected output and reason?
    value = "None"
    if value :
    print("Value is true")
    else:
    print("Value is false")

  • @suryakantranjan183
    @suryakantranjan183 Месяц назад

    value = "none"
    if value == "none":
    print("value is true")
    else:
    print("value is false")

  • @CricketTalesHindi
    @CricketTalesHindi 28 дней назад

    how can you add # in all statements in just a single click plz tell the function name as well as its shortcut.

  • @jyotisingh-ru3ym
    @jyotisingh-ru3ym 2 месяца назад +1

    Sir kya non tech background walo ke data analysis possible h

  • @leenakirpan
    @leenakirpan 2 месяца назад

    Hi rishabh bhai maine data analytics parsue kiya hai muze interview ka preparation our daily program practice karana hai to kuch suggest karo na practice karne ke liye question kaha se search kare

  • @AnkitKumar-hq9ch
    @AnkitKumar-hq9ch 2 месяца назад

    Jaldi jaldi dalo please

  • @Amitsingh-cb8pw
    @Amitsingh-cb8pw Месяц назад +1

    if a % 4:
    print("This is a not leap year")
    else:
    print("This is a leap year")

  • @valabansi1547
    @valabansi1547 Месяц назад

    Year=(input("enter year :"))
    Leapyear=int(year)/4
    If leapyear %4 ==0:
    Print(" this is leap year")
    Else:
    Print("this is not leap year")
    Hope this is correct way to do this...tell me if it's ok to do this way or not

  • @ShrutiDubey-c3n
    @ShrutiDubey-c3n 2 месяца назад

    Hlo Sir,
    I m commerce background currently persuing mba .
    I have some doubt or ques about data analyst job .

  • @pranatipradhan7670
    @pranatipradhan7670 2 месяца назад +1

    Value = None
    If value :
    print ("Value is True")
    else :
    print ("Value is False")
    It returns false because None is giving a 0 or empty value. So it print false .

  • @p-k-rajvansi
    @p-k-rajvansi Месяц назад

    🌱🎉

  • @a.j5519
    @a.j5519 2 месяца назад +1

    Hello Bhaiya i am looking for the training institutes for Data Science. They are as followed
    1. Learnbay
    2. Data Mites
    3. IT vedant
    4. 360DIGITMG
    which one i should choose.
    please help me out in these .
    If not from these please recommend me the institute which will really help me in building the base of my data science journey (i am looking to have classes in the OFFLINE mode).
    I am a fresher 2024 Graduate.
    Waiting to hear from you.

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  2 месяца назад

      Hii, sorry but i never heard anything about these institutions 😕

  • @suryakantranjan183
    @suryakantranjan183 Месяц назад

    year = int(input("Enter year o check it's a leap year or not: "))
    if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
    print(f"{year} is leap year")
    else:
    print(f"{year} is not leap year")

  • @CricketTalesHindi
    @CricketTalesHindi 28 дней назад

    # Question 2 - write a simple program to determine if a given year leap year or not using user input
    Birth_Year = int(input("In which year do you born"))
    if Birth_Year % 4 == 0:
    print("Oh! you born in a leap year")
    else :
    print("Oh! that was not a leap year")

  • @suryakantranjan183
    @suryakantranjan183 Месяц назад +1

    I've some modification in code
    number = int(input("Enter a number here : "))
    if number > 0:
    if number % 2 == 0:
    print(f"{number} is even Number")
    else:
    print(f"{number} is odd Number")
    else:
    if number == 0:
    print(f"{number} is Zero")
    else:
    print(f"{number} is negative Number")

  • @leenakirpan
    @leenakirpan 2 месяца назад

    Next video kab aayegi

  • @muhammadahtshamulhaq4476
    @muhammadahtshamulhaq4476 2 месяца назад

    Sir m Pakistan sy hun bs information technology kia h sath m job bi krraha hun but m 2 saal sy videos dakh raha hun apply krraha hun lakin koi khass response ni milraha

  • @VaibhavShinde-n2l
    @VaibhavShinde-n2l 2 месяца назад

    Bhai power bi project ki link resume me kaise mention karu .... company ka mail id nahi hai...pls help

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  2 месяца назад

      Upload on Github n add link in resume

    • @VaibhavShinde-n2l
      @VaibhavShinde-n2l 2 месяца назад

      @@RishabhMishraOfficial but inviewer ko live dashboard kaise dikhye, aur power bi + SQL project mene Kiya hai to SQL wala portion kaise show hota hai. Me abhi SAP me kam kar raha hu so please guide me.

  • @uzmasaleem3365
    @uzmasaleem3365 2 месяца назад +1

    year = int(input("Enter a year"))
    if year % 4 ==0 or year % 400 == 0:
    print("This is a leap year")
    else:
    print("This is not a leap year")

  • @Maahi_9694
    @Maahi_9694 27 дней назад +1

    18:59 aapne bhi exams di thi kya ??
    User_input= input("share your answer")
    If exam diya hai to:
    Print("like")
    Else :
    Print("comment")

  • @Prashant_Kumar660
    @Prashant_Kumar660 2 месяца назад +1

    Rishabh bhaiya free me data analytics ka Credificate kaise paye. क्यों कि Ham financial struggle कर रहे है bhaiya kya aap हमारा help कर सकते है,🙏

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  2 месяца назад

      Coursera mei free certificates hai, use financial aid

    • @Prashant_Kumar660
      @Prashant_Kumar660 2 месяца назад

      But kaise coursera पर free certificate पाए​@@RishabhMishraOfficial

  • @uzmasaleem3365
    @uzmasaleem3365 2 месяца назад +1

    value = None
    if value:
    print("This is True")
    else:
    print("This is false")
    return false bcz none is giving a 0 or empty value. So it will print false