Nested Conditionals | Lecture 11 | Python Full Course For Beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ม.ค. 2025

ความคิดเห็น • 37

  • @ashutoshmohanty6361
    @ashutoshmohanty6361 ปีที่แล้ว +19

    We want regular videos on Python ❤❤

  • @gaurav_guide04
    @gaurav_guide04 ปีที่แล้ว +3

    Thank you so much sir for give such like python series ❤❤

  • @MrWavZ-ph6if
    @MrWavZ-ph6if ปีที่แล้ว +1

    First.......................................Really Helpful

  • @sorojkantisinha3556
    @sorojkantisinha3556 ปีที่แล้ว +1

    Sir kyunki Python ek case sensitive programming language hai toh agar user input mein user ne 'yes' na enter karke agar 'Yes' enter kar diya toh error hoga kya, aur agar hoga toh ise kaise thik kare. 17:41

  • @ritickkumar9419
    @ritickkumar9419 ปีที่แล้ว +4

    Sir ji , continue upload video of this python series 🙂

  • @Nikita12353
    @Nikita12353 ปีที่แล้ว +1

    ❤❤❤❤❤❤❤❤❤❤❤
    Thank you so much sir, please continue till advance so that we will be able to develop project.... Will will be helpful for my placement🙏🙏🙏🙏❤❤❤❤❤❤❤❤❤❤❤

  • @lakshaydhingra7997
    @lakshaydhingra7997 ปีที่แล้ว

    please upload daily sir . how much we all waited for your videos

  • @dhruv1877
    @dhruv1877 ปีที่แล้ว +1

    Plzz sir my humble request is plzz upload regular videos.

  • @ashutoshmohanty6361
    @ashutoshmohanty6361 ปีที่แล้ว +1

    Please sir go to advance python series from this ❤

  • @sadhanasinha9460
    @sadhanasinha9460 ปีที่แล้ว

    After so many days sir ❤

  • @hariskhanhk5970
    @hariskhanhk5970 ปีที่แล้ว

    sir plz upload videos on daily basis ❤

  • @jannatulmowla5573
    @jannatulmowla5573 ปีที่แล้ว

    Sir plz next vedios. We're eagerly waiting for upcoming vedios ahead

  • @jugalchauhan3150
    @jugalchauhan3150 ปีที่แล้ว

    I like it❤ pls upload daily

  • @Creator_raj_2003
    @Creator_raj_2003 ปีที่แล้ว

    sir in the last program u made a voter id card related program osh me aaap ne bola ki program aaage nahi badha jab citizen ship me no diya to but agar aage nahin badha to fir voter id ka condition kaise check hua (do u have voter id)

  • @SunnyRaj-si1yy
    @SunnyRaj-si1yy ปีที่แล้ว

    Sir kya hm if or else me list ya tuples ka use kar sakte ho

  • @akhilchaudhari7016
    @akhilchaudhari7016 ปีที่แล้ว

    Sir eligibility for vote wale question me sir jaise hi age input 18 se km ho wo turant output de de you are not eligible for vote baki sare option fill na krne pade

  • @moditalks3993
    @moditalks3993 ปีที่แล้ว

    Regular video on python🙏🙏

  • @rahulkumaryadav6014
    @rahulkumaryadav6014 ปีที่แล้ว +1

    Sir please complete the cours of python

  • @aryanshah00
    @aryanshah00 ปีที่แล้ว

    Sir plzzzzzzz regular lectures daaliye na ....

  • @letsanalyse2978
    @letsanalyse2978 ปีที่แล้ว

    sir please upload everyday

  • @NoorulAmeen-bv2if
    @NoorulAmeen-bv2if ปีที่แล้ว

    sir pw skills site open nhi ho rhi h aur agr ho bhi ja rhi h to log in nhi ho rha h bahut try kiya par nhi hua maine only 3 lecture liye recently in one day uski practice ki but ab open nhi ho rha to kaise kare plss solve kar dijiye

  • @dizzyvibezzzz2957
    @dizzyvibezzzz2957 7 หลายเดือนก่อน

    thanks sir " padhai thoda serious ho ke karna chaiye "

  • @SACHINKUMAR-hx2bw
    @SACHINKUMAR-hx2bw ปีที่แล้ว

    I am unable to use lab... whenever I try to open the lab it shows captcha required.

  • @ajsoumyadip1694
    @ajsoumyadip1694 ปีที่แล้ว

    Please add complete course

  • @sandeepmishra1390
    @sandeepmishra1390 ปีที่แล้ว

    Continue make video on django

  • @NothinG_02120
    @NothinG_02120 ปีที่แล้ว

    Sir double equal to( == ) kyu use kar rahe hai ?

  • @gaurav_guide04
    @gaurav_guide04 ปีที่แล้ว

    Upload video daily sir 🙏

  • @SahilBhagat-m5p
    @SahilBhagat-m5p ปีที่แล้ว

    hello sir, I think there is some wrong code on
    So. No. 19, you wrote :
    age = int(input("Please enter your age"))
    citizen = input("are you a citizen of INDIA ")
    voter_id = input("do you have a voter i'd card")
    if age >=18:
    if citizen == 'yes':
    print("yes you are a citizen of INDIA")
    else:
    print("as you are not a citizen of INDIA you are not allowed to vote")
    if voter_id == 'yes':
    print("yes you are allowed to vote")
    else:
    print("as you don't have a voter_i'd card, so you dont allowed to vote")
    else:
    print("you are minor you dont allowd to vote")
    But I think the correct code is :
    age = int(input("Please enter your age"))
    citizen = input("are you a citizen of INDIA ")
    voter_id = input("do you have a voter i'd card")
    if age >=18:
    if citizen == 'yes':
    print("yes you are a citizen of INDIA")
    else:
    print("as you are not a citizen of INDIA you are not allowed to vote")
    if voter_id == 'yes':
    print("yes you are allowed to vote")
    else:
    print("as you don't have a voter_I'd card, so you don't allowed to vote")
    else:
    print("you are minor you don't allowed to vote")
    [ note : please see space on if voter_id]
    ignore if there is some spelling mistake
    please confirm I am wrong or right

  • @sonashayan7498
    @sonashayan7498 หลายเดือนก่อน

    sir aap baqi kie vedioes kab dalae gae please sir jaldi daal dae mujhae aap kie vedies sae python boht achi samaj aie hae aur mae proper iska course karna cha rahi hu sir please ab baqi kie vedioes bhi daal dae

  • @rahuldhiman647
    @rahuldhiman647 ปีที่แล้ว

    Please Sir tell me any data analyst paid course.

  • @johnsonsvaselly5008
    @johnsonsvaselly5008 ปีที่แล้ว

    First comment

  • @nayantewari2906
    @nayantewari2906 ปีที่แล้ว

    sir your teaching style is very good but please upload videos regularly

  • @rohitvyavahare6119
    @rohitvyavahare6119 ปีที่แล้ว

    This is the problem of college wallah quality of content is top notch but consistency is poor very very poor

  • @ayushiisingh-o3i
    @ayushiisingh-o3i ปีที่แล้ว

    sir plz explan it more simple way plzzzzz

  • @anubhavbhaiyaopreturn
    @anubhavbhaiyaopreturn ปีที่แล้ว

    Sir, Please 🙏🥺 help it's giving
    I recently enrolled in "Full Stack Web development"course started from 29 April. But for two days it's giving only"Something went wrong" again and again. I spent my Scholarship amount for buying this course. Please 🙏 help. I belong to very poor family I can't afford to buy this course again please 🥺 help.
    No reply is coming from @pwskillsupport also.

  • @moditalks3993
    @moditalks3993 ปีที่แล้ว

    Regular video on python🙏🙏

  • @moditalks3993
    @moditalks3993 ปีที่แล้ว

    Regular video on python🙏🙏