range Function in Python (Hindi)

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

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

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

    Your voice addss up in making it more understandable and satisfying..

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

    Awesome teacher and person❤️

  • @stocksblaze
    @stocksblaze 5 ปีที่แล้ว +11

    Happy teachers day sir🙏🙏

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

    😯😯are bhaiya itnee mehnet krke video ho 👌

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

    Sir aap Best teacher in the world ho ....

  • @divyak2505
    @divyak2505 2 ปีที่แล้ว +2

    Thank you so much
    My exam is in 2 hour you r a saviour

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

    Thank u sir kl mera pratical h aur ab mai prepare ho chuka hoon

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

    Excellent explanation 👍

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

    thanx sir for information

  • @KrishnaYadav-ok7pm
    @KrishnaYadav-ok7pm 2 ปีที่แล้ว +1

    your always provide some useful and unique information, really awesome bhai, Great job doing keep it up

  • @harshucreationrisod3203
    @harshucreationrisod3203 5 ปีที่แล้ว +5

    Sir please make videos on program analysis.

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

    Awesome sir keep it up we will support uu♥️♥️♥️

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

    sir Your Explanation is very nice

  • @AyushKumar-dg9lb
    @AyushKumar-dg9lb 2 ปีที่แล้ว +1

    Thank you so much bhai or sir and so on..
    It's very helpful for me , Study purpose for my Python Subject

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

    very informative thank u so much

  • @MuhammadFarooq-mw3oi
    @MuhammadFarooq-mw3oi ปีที่แล้ว

    Sir
    Please solve some more examples using for and while loop and for also list

  • @aniketshivhare601
    @aniketshivhare601 5 ปีที่แล้ว +2

    Good explanation thanks sir

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

    Mazaa aa gayaa sirji🙏

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

    Sir upload more pythons videos...

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

    Good PLaylist

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

    Thanku sir range topic allclear🙏🙏😍

  • @chandnipatel5120
    @chandnipatel5120 2 ปีที่แล้ว

    Osm sir aapka videos bahut jyada hi aachha hai

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

    Please make videos on webscrapping with python using requests and beautifulsoup and also on Gui applications

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

    To print the list of range , try like this - list(range(10))

    • @harshalshambharkar910
      @harshalshambharkar910 2 ปีที่แล้ว

      If a person don't know about list then

    • @harshalshambharkar910
      @harshalshambharkar910 2 ปีที่แล้ว

      Thats why he take only range() function
      It's a statderd inbuilt class in python also it's an object

  • @bilalhassankhan221
    @bilalhassankhan221 3 ปีที่แล้ว

    Good job keep going ....

  • @user-og9nl5mt1b
    @user-og9nl5mt1b 5 ปีที่แล้ว +2

    Should I learn angular or react for India , please answer which will be better for jobs , I would like to have a conversation with u , why u don't have Instagram .

  • @aditiyadav5409
    @aditiyadav5409 ปีที่แล้ว +2

    While giving the negative range the formula is not justified. for ex when -10 is j then last term according to formula is j-1 that is -10-1 =-11 ans same with reverse when 0 is j then according to formula j-1 it would be 0-1 =-1

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

    Thankyou ❤️

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

    Sir when it is range(5, 0, -1) then j-1 is -1.so it should go up to -1. I am confused at this point.pls make it clear to me.

    • @deadfootgaming3516
      @deadfootgaming3516 4 ปีที่แล้ว

      Hi Sanhita,
      you should do this.
      (5, 0, -1) =
      5, 4, 3, 2, 1
      how (5, 5-1=4. 4-1=3, 3-1=2, 2-1=1)
      another example
      (5, 0, -2)
      5, 5-2=3, 3-2=1
      as he said (-2 or -1) is stepsize,
      few more examples:
      range(2,20,4)
      2, 2+4=6, 6+4=10, 10+4=14. 14+4=18 then stop, you can jump more than that

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

      Actually I think you was right. Range has exclusive properties so it can’t take last value either it’s a positive value or negative. So the formula j-1 is not valid for negative numbers, I think it’s just a mistake.

    • @mishrprashant10
      @mishrprashant10 3 ปีที่แล้ว

      @@deadfootgaming3516 here, in range (5,0,-1) is index or value ...... please explain also,
      For I in range (len(a)):
      For j in range (len(a)-i-1):
      Here in loop j inside range how (len(a)-i-1) working.

    • @bilalhassankhan221
      @bilalhassankhan221 3 ปีที่แล้ว

      "J-1" is stepsize means like as you can go 0,1,2,3,4 similarly you can move back too!! 4,3,2,1

  • @somyashukla8688
    @somyashukla8688 2 ปีที่แล้ว +2

    Explain this program
    for i in range (3):
    for j in range (i):
    if i ==j:
    print(i, end=" ")

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

    help full😍😍

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

    what is bool() in python

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

      bool stands for Boolean this identifies/evaluates the result to be true or false.

  • @_animet_time_
    @_animet_time_ 5 ปีที่แล้ว +2

    Ya BCA 1sem Notes ho to koi site bta dijiye..

  • @arushcreation4104
    @arushcreation4104 5 ปีที่แล้ว +2

    Hello sir aap video kaise banate ho
    Is pe ek video bano

  • @patelhardik2505
    @patelhardik2505 4 ปีที่แล้ว

    good job sir

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

    informative lecture

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

    Sir aapki website open ni hoti...

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

      Its working fine kindly check www.geekyshows.com/2019/07/core-python.html

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

    Sir upload next video

  • @divyanshu901
    @divyanshu901 2 ปีที่แล้ว

    Nice bhai

  • @PyLearnHub
    @PyLearnHub 3 ปีที่แล้ว

    thank you sir

  • @_animet_time_
    @_animet_time_ 5 ปีที่แล้ว +2

    Sir...plz BCA 1sem ke solved paper available kra dijiya...plz sir..🙏🙏🙏

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

    a=range (1,10,2) h sir
    Ye agr
    a=range(1,11,2) ho to sir
    Please tell me

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

    Hello sir when I am doing this eg: range (10)
    Ans : (0,10)
    And your ans is ( 0,1,2,3,4,5,6,7,8,9)
    Could u pls explain why I am getting different ans pls do reply

    • @akshatrana3324
      @akshatrana3324 2 ปีที่แล้ว

      brother did you get it????? i also need to know

    • @supriyaagrawal646
      @supriyaagrawal646 2 ปีที่แล้ว

      try like this list(range(10))

  • @bijendernagar15
    @bijendernagar15 5 ปีที่แล้ว +2

    Sir pls upload online services management system on php sir pls

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

    Sir plz or video bnaiye

  • @Sourav-ob9op
    @Sourav-ob9op 4 ปีที่แล้ว +1

    Bhai depressed kyu ho

  • @DanishSHARMA-eo8ud
    @DanishSHARMA-eo8ud ปีที่แล้ว

    thanku

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

    Hm bhi 2-2ya 3-3sidiya par Kar ke chadte hai🤣apne hostel ki

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

    सर आपने कोर जवा कोर जवा स्क्रिप्ट कोर पाइथन इन सब में कोर क्या है

    • @geekyshows
      @geekyshows  5 ปีที่แล้ว +2

      Core Means Basic

    • @Xoxoxox-x7b
      @Xoxoxox-x7b 5 ปีที่แล้ว

      @@geekyshows pls make a series of Python and all basic function

    • @geekyshows
      @geekyshows  5 ปีที่แล้ว

      @@Xoxoxox-x7b You will learn many basic functions during this series

  • @dontworry618
    @dontworry618 3 ปีที่แล้ว

    Can i donate some money bro

  • @shwetahatnagar8625
    @shwetahatnagar8625 2 ปีที่แล้ว

    Thank you sir