#6 Python Tutorial for Beginners | Tuple | Set in Python

Поділитися
Вставка
  • Опубліковано 15 жов 2024

КОМЕНТАРІ • 1,6 тис.

  • @streetsidetechnocrats9670
    @streetsidetechnocrats9670 5 років тому +387

    I never seen such a nice tutor like you. Keep it up Sir. You are more valuable

    • @bhanumudhiraj3386
      @bhanumudhiraj3386 2 роки тому

      @Riyanshi's vlogs you can share the link dhidi😄

  • @addiszenadaily
    @addiszenadaily 5 років тому +254

    am watching all add not skipping one of the best tutorial on UA-cam

    • @pardhualapati4981
      @pardhualapati4981 4 роки тому

      Telusukoo..

    • @josaphcj7199
      @josaphcj7199 3 роки тому

      Mee 2

    • @beyondlimits384
      @beyondlimits384 3 роки тому

      Meetoo

    • @soumelee5661
      @soumelee5661 3 роки тому +1

      @Skylar James scam :O

    • @ayushalhat1238
      @ayushalhat1238 3 роки тому

      @Skylar James to anyone reading this plz do not try it as it is a scam which has already trapped many people...they propogate through youtube comment section only ...no doubt *its a scam*

  • @abhishekkumarav8868
    @abhishekkumarav8868 4 роки тому +393

    Do you know why we love to learn python under ur guidance??
    Coz u bother about beginners 🙏❤️

    • @virgo4250
      @virgo4250 4 роки тому +1

      yes ofcourse

    • @adityaprakash8217
      @adityaprakash8217 3 роки тому +1

      Yes true

    • @satyamaruthi1145
      @satyamaruthi1145 3 роки тому +2

      even his assent is also more favourable to beginners and it creates interest to the listeners

    • @BarredTitan
      @BarredTitan 3 роки тому

      Ye

    • @heh2393
      @heh2393 3 роки тому +5

      @@satyamaruthi1145 His voice has a lot of enthusiasm.

  • @blenderhander9485
    @blenderhander9485 4 роки тому +118

    I am a mechanical engineer and i wanted to learn python and then i found you thanks a lot man!!

  • @ABCALFANZO4044
    @ABCALFANZO4044 3 роки тому +92

    We need professors like you in colleges and then studying becomes interesting and enjoyable. Doing great job.

  • @afuneralinwhite
    @afuneralinwhite 2 роки тому +18

    i finally got to start watching the videos you've made. made it through #1-#6 tonight. absolutely blown away by how helpful these have been. I started my course on intermediate python this semester and am already being tasked with figuring out recursion. I can't wait to see how these videos will help me!

  • @ashokjoshi5013
    @ashokjoshi5013 3 роки тому +21

    @Telusko There is a workaround for changing Tuple value, We can convert the tuple into a list, change the list, and convert the list back into a tuple.
    name = ('Ashok','Kiran','John','Steve')
    changedname = list(name)
    changedname[1] = 'Rahul'
    name = tuple(changedname)
    print(name)
    Now the name tuple will have the values changed.
    Output :
    -----------
    ('Ashok', 'Rahul', 'John', 'Steve')
    Kindly give a heart if this comment was helpful.

  • @NikSy
    @NikSy 4 роки тому +45

    Thank you Naveen for this great tutorial
    I would like to add some more point about sets
    1) To create an empty set use
    >>s1 =set()
    because if you use
    >> s1 = { }
    and check >> type(s1)
    you will get , which means it is treated as an dictionary instead of empty set.

  • @pratibha1976
    @pratibha1976 4 роки тому +32

    watched a few videos this evening and followed along! very fun, easy, and it can be fast paced at times but that is the advantage of online learning. I can go at my own pace :) Your channel is a great source! Thank you.

  • @Fitness77799
    @Fitness77799 4 роки тому +18

    my man deserves a billion subscribers i swear great videos man!!

  • @sadhnamall7357
    @sadhnamall7357 2 роки тому +34

    To delete values (95,14,12) we write the code
    del nums[2:5]

  • @jaunelia354
    @jaunelia354 4 роки тому +7

    I've seen many tutorials on python but this one is best especially because the teacher is kind enough to care about beginner, thank you so much,❤️❤️

  • @poojajain4900
    @poojajain4900 4 роки тому +75

    The answer to the quiz question..
    >>>Del nums [2:5]
    >>>Nums
    [25,36,26]

    • @aditsharma279
      @aditsharma279 4 роки тому +1

      A new thing I learnt today

    • @poojajain4900
      @poojajain4900 3 роки тому +3

      @S u m a n t h yes u can pop a number from list..
      Eg. >>>Nums = [ 45 , 56 , 67 , 90 ]
      >>> Nums.pop(1)
      56

    • @gautamsrivastav8330
      @gautamsrivastav8330 3 роки тому +2

      Why couldn’t we use nums.remove(2:5)

    • @poojajain4900
      @poojajain4900 3 роки тому +9

      @@gautamsrivastav8330 if you use that syntax.. it will give you a syntax error.. thats because remove parameter takes only argument.. which means if you use remove you can only remove one number at a time from list.. and also you are supposed to mention the number you want to remove inside the bracket...
      Eg. >>>Nums = [23,56,78,90]
      >>> Nums.remove(23)
      >>> Nums
      [56,78,90]

    • @gautamsrivastav8330
      @gautamsrivastav8330 3 роки тому

      @@poojajain4900 one more thing, I've been working on IDLE, as prescribed in the previous lectures, but when I save it, close it and reopen it, I'm not able to continue in that file. I have to start fresh with a new IDLE file and cannot continue with that I was practicing on.

  • @Anonymous40412
    @Anonymous40412 4 роки тому +25

    Navin sir I must say No human No youtuber No website make me understands like you And the you are the one who bother about beginners and I will make sure that you will have a million subscribers in just few months❤🔥💥

  • @NikSy
    @NikSy 4 роки тому +109

    2)
    If you use a set inside a set which will lead to an error
    eg:
    set_2 = {1,2,3,"hello",{4,5,6}}
    print(set_2)
    It will print TypeError: unhashable type: 'set'
    so instead of that use
    set_2 = {1,2,3,"hello",(4,5,6)}
    print(set_2)
    will print {1, 2, 3, 'hello', (4, 5, 6)}

    • @sureshkumarp1869
      @sureshkumarp1869 4 роки тому +4

      Thank you

    • @pradeeps4103
      @pradeeps4103 2 роки тому

      where is the question?! time please

    • @jagritimahata3042
      @jagritimahata3042 Рік тому

      can u tell me the difference between index and count? I started learning python today so I dont know it

    • @prathikbhat
      @prathikbhat Рік тому +1

      @@jagritimahata3042 Indexing is position of the number while count is total number of elements

  • @utkalaandhramedia2907
    @utkalaandhramedia2907 4 роки тому +6

    Sri garu Meeru super Andi because mee valla ma abbai Python nerchagalugutunnadu
    hats off to our service sir garu🙌🙌🙌

  • @maven558
    @maven558 5 років тому +30

    Thank you Navin Reddy for making Python series.

  • @praveenanookala4457
    @praveenanookala4457 4 роки тому +11

    I was using python 2.5 and when i used the curly brackets for the set, it showed syntax error. So i installed python 2.7.17 and it is working! Great tutorial, sir!

  • @ganeshr18
    @ganeshr18 5 років тому +30

    Your lessons are absolutely crystal clear sir!!!!

  • @simplytan
    @simplytan 3 роки тому +5

    I came to watch this playlist bcz my friend gave me a challenge to end the first 10 eps in one day. But now I'm excited to learn all these. Thank u for teaching us in an easy and quick way

  • @manassav
    @manassav 6 років тому +12

    your videos just create interest in programming language.... :-)

  • @alitdjhe3481
    @alitdjhe3481 Рік тому +1

    I just started learning python
    You are really great ❤❤
    Thank you from Egypt 🇪🇬💙💙

  • @swapnilgour1336
    @swapnilgour1336 4 роки тому +3

    Sir,
    You teach in a very intresting way, that makes me to understand very well.
    Earlier I thoght that pogramming is quite tough, but after watching these video lecture my perception towards programming has changed a lot.
    Lastly but not the least, thank you sir for making this video lecture programme.I am really thankful to you sir.

  • @datascienceworld7041
    @datascienceworld7041 5 років тому +2

    First I learned java and now its python ,you are the best teacher

  • @thatboysavage_official2056
    @thatboysavage_official2056 2 роки тому +4

    Your channel is a great source of coding literacy I've watched 10% of the videos on this playlist 1 night . Really appreciate you.
    Love from Zimbabwe 🇿🇼

  • @ShivomBiswasF
    @ShivomBiswasF Рік тому

    Well thanks a lot sir you are great I am watching this video 4 years after the upload but I loved your explanation a lot.
    and here the answer :-
    nums = [25, 36, 95, 14, 12, 26]
    nums
    [25, 36, 95, 14, 12, 26]
    del nums[2:5]
    nums
    [25, 36, 26]

  • @prachipalav1640
    @prachipalav1640 4 роки тому +29

    You deserve millions of subscribers ❤️

    • @eternalwolverine4027
      @eternalwolverine4027 3 місяці тому

      well he did accomplished 2 mill, but I suppose this was 4 yrs ago.

  • @pvvdprasad86
    @pvvdprasad86 3 роки тому +1

    Explanation of difference between list, tuples, set -> Just what I needed. Teluskunna. Awesome.

  • @a.y.making931
    @a.y.making931 3 роки тому +37

    answer to the assignment question- del nums[2:5]

    • @priyajain2890
      @priyajain2890 Рік тому +1

      Can you please lemme know, where the assignment questions or quiz questions are given?

    • @Tushar-dk9fr
      @Tushar-dk9fr Рік тому +2

      @@priyajain2890
      At the end of video probably in last minute it show in the red box of the screen.

    • @kavyakunibilli
      @kavyakunibilli 8 місяців тому +2

      I think nums[2:4] because upto we are mentioning

    • @prosperhopeman9672
      @prosperhopeman9672 7 місяців тому

      ​@@kavyakunibilliyou are wrong. The poster is correct

  • @soumiksagar3147
    @soumiksagar3147 3 роки тому +1

    This I think one of the best tutorial on youtube 👍👍👍hats off to you sir.......

  • @mannemsrikanth3655
    @mannemsrikanth3655 5 років тому +22

    Answer for quiz :
    1. del nums [2:5]
    nums
    [25,36,26]
    2. We can also use pop to delete specific index numbers i.e
    nums.pop(2)
    nums.pop(3)
    nums.pop(4)
    nums
    [25,36,26]

    • @Tsr2412
      @Tsr2412 2 роки тому

      thank you

    • @vickyrock1418
      @vickyrock1418 2 роки тому +1

      We can also use remove

    • @chembetikarunakar814
      @chembetikarunakar814 2 роки тому

      U get error if u use pop continously because after we use pop it changes its length and we get error pop index out of range

    • @NR44singer
      @NR44singer 2 роки тому

      Can we use nums.remove[2:5]

    • @aRCi31
      @aRCi31 2 роки тому +1

      del nums [-4:-1] -- code should be as much as simple and correspond with task

  • @nOiCe1204
    @nOiCe1204 4 роки тому +1

    bro..i know basics of python..but I got some 2-month break...this is would be the best tutorial to rewind the basic's and for learning also...appreciate you bro...love from ap

  • @LogicalManSujeet
    @LogicalManSujeet 6 років тому +17

    incredible sir...sir i have a ques.. plz upload a video on how to be a data scientist and its skill set
    ..
    please provide tutorials also

  • @sanatangoyal8402
    @sanatangoyal8402 4 роки тому

    sir because of you i can learn these all things in very very evry easy way. salute to you sir

  • @sruthir1236
    @sruthir1236 4 роки тому +3

    You deserve more and more credits.
    My best wishes for ur youtube journey sir.

  • @super_youtube681
    @super_youtube681 3 роки тому +1

    BEST OUT OF THE BEST TEACHING FOR BIGGNERS BETTER THAN MOST OF THE CORSES ON OTHER WEBSITES

  • @raviraimittal
    @raviraimittal Рік тому +6

    nums=[25,36,95,14,12,26]
    del nums[2:4] #del function will delete numbers from index 2 to index 4 as required in the quiz
    print(nums)

    • @MrCroissant-y3f
      @MrCroissant-y3f Рік тому +2

      It is [2:5]
      If [2:4], it won't remove the element 12.

    • @rajnishcdry
      @rajnishcdry Рік тому

      @@MrCroissant-y3f if [2:5] it will also delete the last element 26.

    • @rajnishcdry
      @rajnishcdry Рік тому

      @@MrCroissant-y3f if [2:5] it will also delete the last element 26.

    • @dxrkboyy
      @dxrkboyy 5 місяців тому +1

      YESSS IT WORKED THANKS!!

  • @r.gouthamsrisaisknowledgeh1636
    @r.gouthamsrisaisknowledgeh1636 3 роки тому

    I am watching each and every video of python coding on all channels but this is the best I subscribed to your channel thanks for saying coding free

  • @ivanwachira7523
    @ivanwachira7523 4 роки тому +6

    best tutorial ever.You make what looks hard be simple.

  • @chaithureddy7001
    @chaithureddy7001 4 роки тому

    hii bro i am chaitanya reddy i had many doughts in basics in python by your guidence i am now able to train my mind easly tq bro

  • @nirajmaurya7680
    @nirajmaurya7680 5 років тому +5

    These all are interesting and fun to learn
    100% best tutorial.......thank a lot for creating

  • @himachalam584
    @himachalam584 3 роки тому +1

    Hi, your teaching skills are speechless for me. you are the best when comes in teaching especially in python or any other programming lang.. i do have a question "When we print a set values it will print regardless of its sequence, but when u try to print same set of vales multiple times it is printing in the same sequence Eg : s = {1, 2, 4, 5, 7, 12}, then we ask for its op with >>>s, OP: {1, 2, 4, 5, 7, 12}, its always print the same sequence. pls answer if my question is agreeable.
    Thanks in advance...

  • @louiseaquinin5960
    @louiseaquinin5960 4 роки тому +5

    quiz answer
    >>> nums=[25,36,95,14,12,26]
    >>> nums
    [25, 36, 95, 14, 12, 26]
    >>> del nums [2:5]
    >>> nums
    [25, 36, 26]

    • @aswins156
      @aswins156 3 роки тому

      how will 26 come in the set if u put [2:5], you should put [2:4]insteadd

  • @profkpabila5593
    @profkpabila5593 Рік тому

    My Name is Abdul Rashid from Ghana. In fact, I am really enjoying the tutorial for the first five stages. I shall follow to the end.

  • @devasish204
    @devasish204 4 роки тому +3

    Need more information about how to use those ctrl+space operations for List, set, and Tuple.

  • @adivijji275
    @adivijji275 4 роки тому

    Ur channel is a best privilege that a beginner can find .. thank you Navin gaaru

  • @tobiasprice5378
    @tobiasprice5378 5 років тому +13

    input >>> num = [25,36,95,14,12,26]
    delete>>> del num [2:5]
    result >>> num
    [25, 36, 26]
    >>>

  • @praveen_79
    @praveen_79 Рік тому +1

    the answer is del nums[2:5] . such a good session thankyou sir

  • @Editing_universe09
    @Editing_universe09 Рік тому +16

    LIST:
    append() Adds an element at the end of the list
    clear() Removes all the elements from the list
    copy() Returns a copy of the list
    count() Returns the number of elements with the specified value
    extend() Add the elements of a list (or any iterable), to the end of the current list
    index() Returns the index of the first element with the specified value
    insert() Adds an element at the specified position
    pop() Removes the element at the specified position
    remove() Removes the item with the specified value
    reverse() Reverses the order of the list
    sort() Sorts the list
    SET:
    add() Adds an element to the set
    clear() Removes all the elements from the set
    copy() Returns a copy of the set
    difference() Returns a set containing the difference between two or more sets
    difference_update() Removes the items in this set that are also included in another, specified set
    discard() Remove the specified item
    intersection() Returns a set, that is the intersection of two other sets
    intersection_update() Removes the items in this set that are not present in other, specified set(s)
    isdisjoint() Returns whether two sets have a intersection or not
    issubset() Returns whether another set contains this set or not
    issuperset() Returns whether this set contains another set or not
    pop() Removes an element from the set
    remove() Removes the specified element
    symmetric_difference() Returns a set with the symmetric differences of two sets
    symmetric_difference_update() inserts the symmetric differences from this set and another
    union() Return a set containing the union of sets
    update() Update the set with the union of this set and others
    hope this helps

    • @klaus-mikael_son
      @klaus-mikael_son Рік тому

      Thank you so much

    • @niranjanns8704
      @niranjanns8704 Рік тому

      ofc. if you don't mind, can you give examples? it will be very helpful to me. Thanks for these🙏🙏

  • @belasaxena1021
    @belasaxena1021 3 роки тому +1

    very help full, explained in a very easy way.

  • @bhavikakapadia2462
    @bhavikakapadia2462 6 років тому +100

    nums = [23,36,95,14,12,26]
    del nums[2:5]
    nums
    [25,36,26]

    • @rrsk88_farming
      @rrsk88_farming 6 років тому +2

      Bhavika khatri ? But how

    • @madhu9829
      @madhu9829 6 років тому +3

      26 should not come

    • @Skaxarrat
      @Skaxarrat 6 років тому +20

      26 is included because [2:5] would stop at the fifth element without deleting it

    • @RozaLinda281
      @RozaLinda281 6 років тому +1

      right

    • @adarshchoubey9694
      @adarshchoubey9694 6 років тому +9

      nums = [23,36,95,14,12,26]
      del nums[2:-1]
      nums
      [25,36,26]

  • @bhargavreddy9485
    @bhargavreddy9485 3 роки тому +1

    Really you are making my process of learning easier..

  • @sravanienuganti4596
    @sravanienuganti4596 4 роки тому +3

    Really it is very good for me to learn with this tutorial

  • @sunil_swami
    @sunil_swami 3 роки тому

    For beginners it's really much much beneficial.🙏

  • @aarthirajendran299
    @aarthirajendran299 4 роки тому +12

    Nums=[25,36,95,14,12,26]
    Del nums [2:5]
    O/p = [25,36,26]

  • @prathameshiyer5797
    @prathameshiyer5797 4 роки тому +1

    Sir should I go the step by step video for python in this tutorial or a whole full fledged 6 hr video of yours?

  • @harsiddhisinghdev4650
    @harsiddhisinghdev4650 6 років тому +14

    Thanku sir please explain data science using phython in upcoming vedio's please sir..:-)

  • @aruneshkartik2676
    @aruneshkartik2676 3 роки тому +1

    Nice tutor!! concepts get Crystal cleared!! makes programming easy to learn.
    One of the best tutorials on UA-cam.

  • @geetabhatt6889
    @geetabhatt6889 4 роки тому +6

    >>>nums=[25,36,95,14,12,26]
    >>>del nums[2:5]
    >>>nums
    [25,36,26]

    • @sneha.n4843
      @sneha.n4843 4 роки тому

      geeta bhatt tuple doesn't perform deletion

    • @bohotsaaridhop
      @bohotsaaridhop 4 роки тому

      @@sneha.n4843 It's not a Tuple Just check the Brackets

    • @yahyakilima2958
      @yahyakilima2958 4 роки тому

      why is 26 still not deleted?

  • @VijayaPypuri
    @VijayaPypuri Рік тому +1

    Really wanna tell this u r just amazing! The thing I like the most in u r tutorial is u just come to the beginners level mind set and explaining the concept not just like a fully professional going with his flow

  • @unknown__..--
    @unknown__..-- 4 роки тому +4

    so the basic difference between list and tupule is () and[] .
    am i right?
    remember i am talking about the basic difference.

  • @kalivaraprasad2928
    @kalivaraprasad2928 4 роки тому

    Navin, I am a Mechanical Engineer, having 0 knowledge in programming. Want to change my career into programming. Once I started browsing tutors in you tube, I saw your video, I feel like i am in comfortable zone that I found the right tutor.

  • @thelost8203
    @thelost8203 4 роки тому +3

    can we use pop in set? it says "pop() takes no arguments (1 given)"
    set does not support indexing right?
    Refrence to 5:33

    • @arghyabhattacharya7922
      @arghyabhattacharya7922 4 роки тому

      same question

    • @thimmarajur1437
      @thimmarajur1437 4 роки тому

      It doesn't support indexing right......but in sets we cannot specify indexing inside brackets and we can just use .pop() and it removes last element

  • @nirjala8962
    @nirjala8962 Рік тому

    Sir ur sessions are really helpful....in the beginning i have no idea about python..ur teaching helped me a lot. As I am an IIIT student...I am really enjoying ur sessions...thanku very much sir. 🙏🙏🙏🙏🙏 The way I teach is quite simple and enjoyable.....

  • @bharatbhatia6000
    @bharatbhatia6000 5 років тому +5

    Undoubtedly your content is awesome!!
    Just out of the context,i think the starting tone is taken from laughter challenge . Is'nt it? :-p

  • @valorantclipbaiter2925
    @valorantclipbaiter2925 5 років тому +3

    I have never seen such nice tutor sir.keep it up

  • @nh4572
    @nh4572 3 роки тому +7

    Ans is del nums[2:5]
    Am i right sir?

  • @samyakjaipuria2729
    @samyakjaipuria2729 4 роки тому +1

    your videos just create interest in the programming language

  • @jitendra.nayak5
    @jitendra.nayak5 6 років тому +5

    Its Awesome,Thank you for the series..and i like your way of teaching sir ,its really helpful for us ,Thank You.

  • @ramakrishnagubbala2774
    @ramakrishnagubbala2774 3 роки тому +2

    Your teaching is really easily understandable and fabulous.
    It very easy for beginners to get a great knowledge sir👏this is the worthy youtube channel with great lectures teaching point to point

  • @nitishnitish9172
    @nitishnitish9172 4 роки тому +6

    del nums[2:5]
    or
    del nums[-4:-1]

  • @raihanhossain596
    @raihanhossain596 2 місяці тому

    Q. num = [25,36,95,14,12,26]
    if we want to remove the value 95, 14 and 12, we use:
    num.remove (binary formation of that number)
    example: to remove 95, the formula will be num.remove (2)..
    Thank you for this videos. I am learning python throughout the playlist. I hope I will learn enough.

  • @snehajitchandra2976
    @snehajitchandra2976 6 років тому +7

    Excellent video sir!!!

  • @shivkumar-ik9rs
    @shivkumar-ik9rs 4 роки тому

    You are unbelievable MR.Navin Reddy Garu,in on word AWESOME, Never saw this type of easy Teaching from you Execellent Grip in your knowledge

  • @rrsk88_farming
    @rrsk88_farming 6 років тому +6

    I'm enjoying this series 👍

  • @mitalkarkar2240
    @mitalkarkar2240 3 роки тому

    Way of your presentation is very nice, I mean you are not repeating unnecessary sentences over and over again. Awesome work. Thank you.

  • @MANISHSHARMA-xk1su
    @MANISHSHARMA-xk1su 6 років тому +5

    Amazing video sir....❤️

  • @zahrasadeghibogar
    @zahrasadeghibogar 3 роки тому +2

    Thank you very much for your interesting way of teaching. I have a question. Did you put all of your python-related tutorial in a long single course? If it is Not, why? It will be much more helpful.

    • @kalubdailey6257
      @kalubdailey6257 3 роки тому

      It actually wouldn't be very helpful, especially to those who like to learn in small segments or only have limited time to watch tutorials, so smaller bits on specific subjects makes it much easier to learn.

  • @siddupujari9023
    @siddupujari9023 2 роки тому

    not everyone can be best at teaching, but You are ...always start with basics.. thats way to go .. good one

  • @rumanmdhasan6224
    @rumanmdhasan6224 4 роки тому +7

    num = [25,36,95,14,12,26]
    del num[2:5]
    print(num)

  • @awesomeaman4955
    @awesomeaman4955 Рік тому

    Sir in the description you have written that we can change value in the tuple so plzz change it ♥️

  • @hasibkhan8600
    @hasibkhan8600 5 років тому +5

    nums = [25, 36, 95, 14, 12, 26]
    del nums[2:5]
    output: [25, 36, 26]

    • @gouravrathor9186
      @gouravrathor9186 5 років тому

      can you tell me how to use it or from where i can learn it

  • @MrMelodySai
    @MrMelodySai 3 роки тому

    I didn't skip ad because you sir had teach very nice alwasy so I think you wipp get much money when we see more ads 👍

  • @RameshBabu-di5wn
    @RameshBabu-di5wn 4 роки тому +3

    del[2:5]

  • @jobseeker1329
    @jobseeker1329 3 роки тому

    2day my confusion get way from me about LIST,TUPLE and SET thnk u sir from backbencher loved it

  • @993jagan
    @993jagan 5 років тому +6

    I'm not getting the pop-up's .what might be the problem. even ctrl+space is also not working

    • @PriyankaGupta-le1dt
      @PriyankaGupta-le1dt 4 роки тому

      me too not getting in list also and here also

    • @bharathsai4604
      @bharathsai4604 4 роки тому

      @@PriyankaGupta-le1dt same here i am using 3.8 interpreter
      I guess it will come in pycharm community version

  • @khandavallidevi6976
    @khandavallidevi6976 4 роки тому

    Your way of teaching is really excellent

  • @paraspandey3401
    @paraspandey3401 3 роки тому +32

    who are after there class 12th :-)

  • @banaras.wala.foreignaala
    @banaras.wala.foreignaala 4 роки тому +2

    Dear Navin,
    Wonderful
    Thanks,

  • @chandrasekharreddi1106
    @chandrasekharreddi1106 5 років тому +5

    Ctrl+space not working

  • @KRITIKARANIDEB
    @KRITIKARANIDEB Рік тому

    hi Navin. I am 9 years old and thank you for helping me with python, I really appreciate it.

  • @Mynotes-mr7uw
    @Mynotes-mr7uw Рік тому +3

    6:28 del nums[2:5]

  • @simrannadaf4038
    @simrannadaf4038 4 роки тому +3

    Nice tutor!!concepts gets Crystal cleared!!makes programming easy to learn

  • @rocky8570
    @rocky8570 5 років тому +3

    nums = [25,36,95,14,12,26]
    del nums[2:5]
    print(nums)
    OUTPUT = [25,36,26]

  • @anandmohan1063
    @anandmohan1063 3 роки тому

    Awesome..... the way you have explained Tuple, List & Set

  • @alqamasharique4196
    @alqamasharique4196 4 місяці тому +4

    Legends watching this in 2024🤣

  • @uttejgunda4863
    @uttejgunda4863 3 роки тому

    in this video, tup can also be variable right,then what's the difference between assigning multiple values into a variable and assigning this way. Both are same right?

  • @shankargope2475
    @shankargope2475 Рік тому +1

    Learning and practicing the foundation concepts of python with utmost clarity👌All thanks to your teaching methods 🙏. The way you have delivered the lectures keeping the simplicity is really very much helpful. Love your teaching sir ❤

  • @shaiksubhani3840
    @shaiksubhani3840 4 роки тому +2

    Hi sir, I have one small doubt,i.e in tuples what is the mean by packing and unpacking, and also in list difference between extend and append how is work.

  • @kumaresan_7
    @kumaresan_7 Рік тому +1

    We can delete the collection of values by using reomve
    Remove=[94,14,12]
    print(nums)
    25,36,26