Dictionary in Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 มิ.ย. 2024
  • Telusko Courses:
    Spring and Microservices Live Course : bit.ly/springmslive
    Coupon: TELUSKO25 (25% Discount)
    Industry-Ready Java Spring Microservices Developer Live : bit.ly/JavaMS2
    Complete Java Developer Course : bit.ly/Comp-Java-Dev-2
    Coupon: TELUSKO20 (20% Discount)
    Udemy Courses:
    Java:- bit.ly/JavaUdemyTelusko
    Spring:- bit.ly/SpringUdemyTelusko
    Java For Programmers:- bit.ly/javaProgrammers
    For More Queries WhatsApp or Call on : +919008963671
    website : courses.telusko.com/
    Instagram : / navinreddyofficial
    Linkedin : / navinreddy20
    TELUSKO Android App : bit.ly/TeluskoApp
    In this lecture we are discussing about Dictionary:
    -- if you want to accessing the data by using key then we are using dictionary
    -- Dictionary uses key and value pair
    key and value
    in python
    data={1:'Navin',2:'kiran',4:'Harsh'} # 1 is key and Navin is value and 2 is key and kiran is value and 4 is key and Harsh is value
    property of dictionary:
    -- key must be immutable and unique
    immutable means we can't change the value
    unique means we can't repeat the key
    -- value can be anything
    -- we can access the value by using key
    -- we can't access the value by using index
    -- we can't access the value by using value
    fetching the value from dictionary
    data[4] # we can access the value by using key here key is 4
    data[3] # you get error because key is not present in dictionary
    get() method:
    -- we can access the value by using get() method
    -- if key is present in dictionary then it will return the value
    -- if key is not present in dictionary then it will return None
    data.get(1)
    data.get(3) # not get anything
    print(data.get(3)) # it will return None
    data.get(1,'Not Found')
    data.get(3,'Not Found')
    use of zip() method:
    -- we can combine the two list by using zip() method
    -- it will return the tuple
    keys = ['Navin','Kiran','Harsh']
    values=['Python','Java','JS']
    use of dict() method:
    -- we can convert the tuple into dictionary by using dict() method
    data=dict(zip(keys,values))
    data['Kiran']
    data['Monika'] # it will give error because key is not present in dictionary
    add the value in dictionary:
    data['Monika']='CS'
    data
    delete the value from dictionary:
    del data['Harsh']
    Nested Dictionary:
    -- we can store the dictionary inside the dictionary
    prog={'JS':'Atom','CS':'VS','Python':['Pycharm','Sublime'],'Java':{'JSE':'Netbeans','JEE':'Eclipse'}}
    prog
    prog['JS']
    prog['python'][1]
    prog['Java']
    prog['Java']['JEE']
    Spring Full Course : courses.telusko.com/learn/Spr...
    Python for Beginners :- bit.ly/3JOLQhl
    Rest API in Spring Boot : goo.gl/5Wgsk6
    Restful Web Services Tutorial : goo.gl/3mosnz
    Spring Boot Tutorials : goo.gl/7894NE
    Editing Monitors :
    amzn.to/2RfKWgL
    amzn.to/2Q665JW
    amzn.to/2OUP21a.
    Editing Laptop :
    ASUS ROG Strix - (new version) amzn.to/2RhumwO
    Asus vivoBook :amzn.to/2wS0Hpt
    Camera : amzn.to/2OR56AV
    lens : amzn.to/2JihtQo
    Mics
    amzn.to/2RlIe9F
    amzn.to/2yDkx5F
    amzn.to/2WYqLde
    Java:- bit.ly/JavaUdemyTelusko
    Spring:- bit.ly/SpringUdemyTelusko
    More Learning :
    Java :- bit.ly/3x6rr0N
    Python :- bit.ly/3GRc7JX
    Django :- bit.ly/3MmoJK6
    JavaScript :- bit.ly/3tiAlHo
    Node JS :- bit.ly/3GT4liq
    Rest Api :-bit.ly/3MjhZwt
    Servlet :- bit.ly/3Q7eA7k
    Spring Framework :- bit.ly/3xi7buh
    Design Patterns in Java :- bit.ly/3MocXiq
    Docker :- bit.ly/3xjWzLA
    Blockchain Tutorial :- bit.ly/3NSbOkc
    Corda Tutorial:- bit.ly/3thbUKa
    Hyperledger Fabric :- bit.ly/38RZCRB
    NoSQL Tutorial :- bit.ly/3aJpRuc
    Mysql Tutorial :- bit.ly/3thpr4L
    Data Structures using Java :- bit.ly/3MuJa7S
    Git Tutorial :- bit.ly/3NXyCPu
    Donation:
    PayPal Id : navinreddy20
    www.telusko.com
  • วิทยาศาสตร์และเทคโนโลยี

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

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

    Bro thank you so much, i got hired because of you,i owe you alot.

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

      I want to ask you whether this series is enough to understand all python concepts?

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

      In which company u hired??

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

      @Harsha I see you are a man of culture

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

      @@pegasus3642 S T O N K S

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

      Bro which company u hired can u tell me that

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

    I am a child and learning python from you. You are giving so much knowledge in a funny way. Wow, well done.

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

      @arjun anand even i am 11 ! . literally if you ask anyone at this age that do you do programming , the answer will be no because it is tough as per their perspective . but if you have a teacher like navin sir you can learn anything at any age ! . navin sir rocks !!

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

      @arjun anand Kids are smart these days... I'm 13 and Im struggling with Python lol..

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

      What is your age, I am 12.

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

      @arjun anand And I am 16 Struggling with Python 😂😂.
      Good that you Love doing this. All the best brother

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

      That's good for all of you as I have mastered python.

  • @Sourav.67
    @Sourav.67 3 ปีที่แล้ว +41

    What a way of teaching 😎 I'm impressed ❤️and i must say that before these lectures I don't know even a single code in python but, now I can write python code and it will work 😎😅.

  • @nisaazeem6858
    @nisaazeem6858 10 หลายเดือนก่อน +10

    I have finally discovered the best channel for learning Python. Your teaching style is truly awesome.

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

    Navin, love your videos!
    I am studying python to further my career as a network engineer and obtain my PCEP/PCAP certification and CCIE.
    You are a GEM Sir. Love your videos. Clear and concise. Appreciate all of your efforts.

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

    These are short, effective, and easy to follow tutorials. Keep the hard work

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

    the way that your conveying the subject its marvelous.... we have no words to say about you.... even small kids also understand your sessions.. really very thankful to navin reddy sir...

  • @samuelofosu-yeboah7981
    @samuelofosu-yeboah7981 4 ปีที่แล้ว +10

    Thank you so much. I started this few weeks ago. Very Helpful.

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

    These are so basic yet so confusing concepts! One needs a good practice to be good at this! A good series for clearing all basic doubts. Thank you!

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

      There are four is this complex data types in Python, which means you have to find a way to distinguish between them in your own way if you understand them. A good place to be bro

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

    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.

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

      That's great👏👏... It helps the begginers alot

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

      Thanks bro 👍

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

      Good one mate...

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

      Bro when I type s1= set(). It shows type error and also shows tuple object is not callable. Pls explain bro what I did wrong

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

      @@kingofking481 i think it may be the problem with version you installed...

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

    he taught me the same thing my teacher thought me for 2 months in 12 mins
    hats off !

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

    Thank you for the video. Dictionary takes on a whole new meaning on the Internet.

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

    New to coding. Learning from your channel, everything till now has been understandable and crystal clear. Hoping i will not give up like i give up on everthing else. Fingers crossed !!!!!

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

    As a Beginner for the programming It's very helpful for me understand basics.

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

    Sir ,I feel very lucky that I find your channel to learn python .Your teaching way is amazing .Thankyou so much sir ❤️

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

    Whenever i confused about programing i always open this channel 👍👍👍

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

    Hi Navin,
    Awesome lecture, interesting to learn new things.
    Since your lecture is very interesting, we will not miss even a single word. I found out a mistake from video, might be by mistake you told this
    You said "create dictionary with the help of "list" which is correct, but you also mentioned u can create using "set" which is wrong, because key value mapping will be improper because set will not follow sequence
    Thanks

  • @RohitSingh-dc6hp
    @RohitSingh-dc6hp 3 ปีที่แล้ว +3

    This ways perfect for the easily learn about dictionary of python ... thanku sir for the easily teaching..

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

    The way you are teaching is amazing ✨

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

    i never see anyone who teach python like you , awesome video

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

    you are the one who give pure knowledge..in TH-cam best channel ever seen....

  • @shankargope2475
    @shankargope2475 8 หลายเดือนก่อน +4

    Wow really wonderful explanation style with utmost simplicity👌. Grasping and practicing the foundation concepts of Python at the same time with so much ease 👍 Each aspect of dictionary has been explained nicely. Just awesome❤

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

    Very well explained sir thnkuu for helping us all to understand the concepts very easily .its like one of the best video i have watched on dictionary😇😇😇

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

    Very Helpful Tutorial man! cheers!

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

    Yes we really enjoying this series on python programming

  • @ShivamRaj-bo4uq
    @ShivamRaj-bo4uq ปีที่แล้ว

    This videos is beneficial to all the programmers. And it's clear all the basics point . It is very use full for the beginners

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

    Sir your classes are as much engaging as a video game!

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

    Sir your lectures still rocks!
    Love from a student of 11th class.

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

    Me: Finished exams, is in 12th break, and wants to study some Python
    Video: 10:54
    *Vietnam flashbacks*

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

      lol that war was huge

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

      is ur pfp from an anime?

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

    Sir, thanks a lot for such an informative lesson but I am still a little confused with which brackets can make a video regarding that as well. Thanks

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

    I don't know what to say but this is the most lovely explaination!

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

    The concept is a little tricky, you didn't mention some methods but that's totally fine I also don't wanna get too much confused on just basics. Love the way you explain it. Thanks

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

    I am also a child and now I am learning python from you with an easy way thank you sir

  • @PK-yh8bd
    @PK-yh8bd ปีที่แล้ว +3

    Thanx from powerstar fans💯❤

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

    Bro please give more examples of dictionary in dictionary which mimics a database btw the content is amazing i learned so much from your videos❤️

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

    You make it so simple . Thanks!

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

    Sir u explain awesome...I am 2011 MCA passed out.. was worried how could I learn so many things and keep remember.. but your videos gives positive mindset..thanks a lot
    please keep the end screen display after the content is displayed completely, u can keep few extra seconds as buffer to show end screens..Thank u

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

    before i reached 3 minutes i had already subscribed and liked the video because simple is more ...Thank you for the content Sir

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

    I was squeezing my mind about nested dictionary for a long time
    thank you so much it was vey helpful

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

    Thank you so much anna free ga explain chestunnanduku

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

    Hi bro...
    U r the one of the best teacher for python language....
    The best things in your video is I will never boor during your lecture....
    At last thanks a lot bro...❣️❣️👍🥰

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

    You are doing well keep it up and you are the best teacher

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

    Thankyou Naveen sir
    I wanted to learn python form my childhood but was never possible but because of u it became possible now
    thankyou very much!!!!!!1

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

    your teaching is OverPowered. Thanks

  • @user-dj9tn8zx7m
    @user-dj9tn8zx7m 10 หลายเดือนก่อน +1

    Fantastic!! Very well explained. Loved it.

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

    Thank you, Naveen for this great tutorial
    Bro thank you so much, I got hired because of you, I owe you a lot.

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

    Hi,
    I was wondering if it is possible to create a dictionary that also works in a reverse mode.
    But at the same time in the regular mode.
    Because i wanna create a translate system.
    But than that they translate both ways automatically, without switching the language it self.
    Is this possible ?
    Thanks

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

    Really your method is absolutely good

  • @banaras.wala.foreignaala
    @banaras.wala.foreignaala 4 ปีที่แล้ว

    Dear Sir,
    Very clear and precise.
    Thanks,

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

    Thank you for the detailed explanation!

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

    Thanku for explaining the concept in a easy way

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

    I'm new learner, you are awesome I am easily excuting the tasks infact I am enjoying. I've some doubts like how you clean the page and scrolling up page could you please clarify me sir.

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

    dear Navin Sir i m learning PYTHON form your video series and your lectures are very interesting and easy to learn and i become very big FAN of your , so thanks for teaching us Python .
    Dear sir , I have learnt C and C++ now i m learning Python then i will learn GUI in through Python but the question is that how can i make my carrier in IT Sector I need your
    Guidance

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

    thanks a lot.. got to learn so much from this video.. :)

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

    very nice and effective explanation sir....love your way of joyful teaching....keep going sir

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

    It's so useful as a board student these series are enough to make uh base strong ❤️thanku sir

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

    i watched all your videos on python series before 1 day of my practical exams , i got 29 out of 30 😇

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

      What type of questions, tasks were on your exam?

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

      @@zaderax like , writting program to append data in list( according to user choice ), bubble sort in python ,different b/t list/tuple

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

    at 5:30 , i was thinking that i m now a mastermind in python that 'NOT found' concept
    thank alot sir ji

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

    Sir I have a problem that control+space is not working in IDLE in my case...Any another option to list specific function?

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

    Happy Gurupurnima. Thanks for the videos.

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

    hi sir, i am a subscriber to your channel and started python learning from you. i wanted to ask you whether i can get the notes or pdf of python by you.

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

    Wow!! loved it !! Thanks a lot!!!

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

    even your intro sounds are dope . i love u bro .

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

    Hey I love computer But when I joined class 11 I started hating this subject!A guy recommended me your videos and now I started liking the subject a lot!Thanks man Keep it up !

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

    Hello Navin .,..I am Mechanical engineer, by watching your videos I get confidence to jump into IT.
    Will you please make videos for SQL.
    I want to learn from you only.

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

    Sir you explain difficult concepts so easily

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

    Hi Naveen, Thank you so much for giving a brief on each concept...

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

    Explained really good

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

    Dude i took python as a subject in my semester now i am struggling with it but this man is giving me a hope let's see what happens

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

    Nice explanation Reddy garu.

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

    Very beneficial video...thanks a lot sir.

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

    You really teach very well.👌👌👌👌👏👏👏👏 I really understood it.🙍🙍🙍🙍

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

    Thanks a lot very easy to follow 👍

  • @Sana-qo3tc
    @Sana-qo3tc 2 ปีที่แล้ว

    Small but very very useful.......you are amazing sir

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

    Awesome, very helpful...

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

    Hello there ,
    Can we print the whole list / tuple / set / dictionaries without their respective brackets ?
    If yes,
    Please let me know ur answer sir.

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

    Keep up the good work!

  • @mukhilamrith4017
    @mukhilamrith4017 8 วันที่ผ่านมา

    Hey Navin, Thank you so much for the content been learning a lot from this. I had a quick question : When using { } for sets, there is a chance of the content getting mixed up right, the order is not sequence. So when we use { } for keys to keep them unique, then the keys and the values get mix matched right
    used IDLE
    here is what i mean - for instance there are 4 people whose phones have to be added as per name
    key={"MK","PK","LK","NM"} # used a set so only unique values are there

    key
    {'LK', 'PK', 'MK', 'NM'} # Here is where the problem is the key value changed
    values=[1,2,3,4]

    values

    [1, 2, 3, 4]

    x=dict(zip(key,value))

    x

    {'LK': 1, 'PK': 2, 'MK': 3, 'NM': 4}
    so the key does not align to the sequence of the values(the first key with the first value), by using this method. I wanted to aligned the MK -1;PK-2
    I do understand that there is another method of doing x={"MK":"Pixel" }for the exact correlation but is there a way to do the above in correlation .
    Here is a solution i through but wasn't sure if it was right, instead of the curly bracket { } we can use a [ ] square bracket which will all the exact alignment of keys with values but then there is a chance of duplication so didn't know how to proceed.
    Would really appreciate if could you advice a way for this ?
    Thank you again for your content on this, it really helped me to get a grasp on the topic

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

    And thanks 😌 sir to giving your important time to us for teaching

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

    Awsm tuts Navin sir.

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

    BRO I am enjoying your way of teaching and making teaching a fun....

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

    Very good training material👏👏👏

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

    Thank you so much, you are doing great work!!!

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

    Thank you so much for all your work!

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

    It's useful 😊 thank you 😊😊

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

    Mutability : tendency to change

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

    Nice, and well described. I am having a conflict with zipping a list of two elements with an identifier of 1 key. Wish python can include a sub list as an identifier and use another list's element as identifier.

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

    Navin sir congrats 8 lakh subs....🎊🎊

    • @ChandanKr.16
      @ChandanKr.16 4 ปีที่แล้ว +2

      Sir is waiting for 1 million subs

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

      @@ChandanKr.16 Yess bro

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

    Sir. Your head seems brighter than my coding carrier..

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

    I really want you to post more videos on python. It really helps. It would be really helpful if you post recursion and backtracking concepts.

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

    Thank you,,very easy to understand !

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

    What is the best website for course material for python in solving problems and getting understand the problems in easy way

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

    Thanks a lot for this tutorial sir 😊

  • @harjeetsingh-pk8wz
    @harjeetsingh-pk8wz 4 ปีที่แล้ว +1

    Can we use get () function in dictionary to retrieve dictionary from a dictionary? If yes,how?

  • @amankumar-kw3xs
    @amankumar-kw3xs 3 ปีที่แล้ว +1

    sir, ist thing i want to congratulate you, you taught us very well through these sessions.
    sir, when we assign additionally value for 3 in the list that is not found, and after when i entered data[3], can't we merge this thing not found in between automatically, like if I entered any number it automatically give not found either

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

    Detailed explanation on python dictionary master

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

    I am trying to merge two lists using 'dict' but it is showing dict object is not callable. I need the reason for this problem?

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

    Thank u so much sir for clear explanation

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

    Please sir,keep on uploading video
    Love you from Nepal

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

    Hello Sir,which command is used to clear python shell work space?