No video

Tutorial 3- Python Sets, Dictionaries and Tuples

  Рет қаралды 220,994

Krish Naik

Krish Naik

Күн бұрын

Пікірлер: 94
@DeepakSharma_youtube
@DeepakSharma_youtube 4 жыл бұрын
[] = Brackets () = Parenthesis {} = Curly Braces In-built = Built-In At one time I also used to call them interchangeably :)
@aditigupta596
@aditigupta596 6 күн бұрын
Literally the best tutorial
@pritishpattnaik4674
@pritishpattnaik4674 2 жыл бұрын
Ur videos + Documentation brushed off my python skills :)
@user-xn5ut5pn2h
@user-xn5ut5pn2h 11 ай бұрын
i love the way you explained everything was so easily to understand
@sarojrout227
@sarojrout227 5 ай бұрын
great videos. just my 1 cent tip: there is a way to modify the tuple elements is to convert the tuple to a list and then change it and later convert that list again to tuple :) just a work around if anyone wants to change the tuple element
@shivendradubey4239
@shivendradubey4239 5 жыл бұрын
Best 👍💯 I want more videos this playlist
@nurulnajwasafie2508
@nurulnajwasafie2508 2 жыл бұрын
Thanks a lot for the tutorial. I'm basically following your python playlist. It helps a lot for newbie like me.
@awakenwithoutcoffee
@awakenwithoutcoffee 4 ай бұрын
you are an amazing teacher Krish. Much appreciated!
@tejaswigutta9017
@tejaswigutta9017 5 жыл бұрын
Sir,please upload videos on sql related to data science as well!
@rusteze4710
@rusteze4710 5 жыл бұрын
Eagerly waiting for more videos on deployment
@uditarora1215
@uditarora1215 3 жыл бұрын
Brief and concise perfect content for learning ❤️🔥🔥🔥💯
@afrinahossain328
@afrinahossain328 3 жыл бұрын
Your videos help me a lot to get a clear idea. Thanks for the tutorials. Keep going.
@koustavpaul3525
@koustavpaul3525 2 ай бұрын
Thank you sir for this outstanding tutorial.
@ashayjain2134
@ashayjain2134 4 жыл бұрын
Hit like if you are here after seeing Krish's latest video on How to learn Data Science using his videos !
@harshkr007
@harshkr007 9 ай бұрын
In Python versions before 3.7, dictionaries were unordered. This means that: The order of items was arbitrary and unpredictable. Items could be accessed by key, but not by index. Iterating over the dictionary would yield items in an arbitrary order. This was because dictionaries in Python were implemented as hash tables under the hood. Hash tables store items based on their hash value, not their insertion order. However, starting with Python 3.7, dictionaries are ordered. This means: Items are stored and iterated in the order they were inserted. Items can be accessed by both key and index.
@arvindjoshi803
@arvindjoshi803 10 ай бұрын
ordered (In Python 3.7 and higher version): dictionaries are ordered, which means that the items have a defined order, and that order will not change. A simple Hash Table consists of key-value pair arranged in pseudo-random order based on the calculations from Hash Function. Please correct it is an older version
@dr.narendrakumar3503
@dr.narendrakumar3503 2 жыл бұрын
Nice help to aspirants of python learning
@shubhamchaudhary7322
@shubhamchaudhary7322 3 жыл бұрын
done...heading to video number 7 :)
@soumalyadutta3941
@soumalyadutta3941 4 жыл бұрын
This is actually good.. your videos are like quick notes for me.. keep going.. I want some suggestions from you personally. What should I do?
@robertdowneyjr.6926
@robertdowneyjr.6926 4 жыл бұрын
you should keep studying
@prithviraj627
@prithviraj627 2 жыл бұрын
@@robertdowneyjr.6926 LOL!
@143balug
@143balug 4 жыл бұрын
Thank you very much, these videos are giving me much command on python related to ML
@arandomwho
@arandomwho 2 жыл бұрын
thanks for all your amazing video
@nagrajwellness9720
@nagrajwellness9720 2 жыл бұрын
Neat and clear sir love you
@saddamshaikh9285
@saddamshaikh9285 5 жыл бұрын
thank you so much.. sir..
@kalyaniaksv9518
@kalyaniaksv9518 5 жыл бұрын
sir please make a complete videos on artificial intelligence course
@arpitashukla2544
@arpitashukla2544 Жыл бұрын
thanks a lot for the tutroial.
@ganeshgunjal4220
@ganeshgunjal4220 Жыл бұрын
Hi krish sir, video is so nice and best one. but sir u said that no need to remember but what will be in intrvw? will they ask regarding all this. we understand concepts and also googling idea.
@rahuliyer4927
@rahuliyer4927 10 ай бұрын
Thanks was helpful
@simanchalpatnaik2566
@simanchalpatnaik2566 4 жыл бұрын
Hey Krish..Thanks for the video...Does Tuple is having only 2 inbuilt functions, because when I press Tab after Dot(Ex: tuple1. ) I am getting only 2 inbuilt functions (Count & Index) or it depends on Anaconda version ?
@krishnaik06
@krishnaik06 4 жыл бұрын
Yes. Tuple has only count Nd index i guess
@chaitanyasunkara6115
@chaitanyasunkara6115 3 жыл бұрын
Thank you Krish
@tejaswigutta9017
@tejaswigutta9017 5 жыл бұрын
Sir, please upload rest of the videos at the earliest.. Excited to learn them 🔥
@louerleseigneur4532
@louerleseigneur4532 3 жыл бұрын
Thanks Krish
@pranitadas3479
@pranitadas3479 4 жыл бұрын
Hi Krish, There is a minor mistake in the notebook , instead of str_example.isnum() it will be str_example.isnumeric()
@AbhiAgarwalRA
@AbhiAgarwalRA 2 жыл бұрын
if you know more then Krish sir the why don't you open your own KZfaq Channel and teach others
@aakashp4404
@aakashp4404 Жыл бұрын
@@AbhiAgarwalRA it's a person's perspective weather to open a channel or not his/her knowledge does not depend on that and @pranita thanks for sharing Ur knowledge.
@poojanpatel6885
@poojanpatel6885 Ай бұрын
while reteriving data from database. lets suppose there no value in one of the keys in dictionary. how can we handle it ??. like in react js there is a library called LODASH. is there anything similar for Python ?
@mokshaGyanRam
@mokshaGyanRam 3 жыл бұрын
sir you did not specify the access operation for sets
@moviemagicful
@moviemagicful 2 жыл бұрын
Sir can u explain me how did u right sets definition above d cell
@FaizanAli-fd4uw
@FaizanAli-fd4uw 2 жыл бұрын
Switch from code cell to markdown cell and type- #space Heading if u want to write heading or without #, type ur definition in the markdown cell
@navinn.luthrianavinn.luthr9532
@navinn.luthrianavinn.luthr9532 3 жыл бұрын
Thank you sir 🙏
@Aabara_ka_dabara
@Aabara_ka_dabara 2 жыл бұрын
awesome..sir
@aamnasuhail4468
@aamnasuhail4468 3 жыл бұрын
Done and implemented
@gayleale
@gayleale 3 жыл бұрын
Thank you!
@sreenivas1207
@sreenivas1207 2 жыл бұрын
After creating nested dictionaries how to make a for loop to print only the years which you have shown in example sir.
@srinugnt2002
@srinugnt2002 4 жыл бұрын
when to use single quote and when to use double quotes?
@karankeshav1
@karankeshav1 Жыл бұрын
You work is always appreciable but apart from everything.....what is tuple😂😂😂 टूयूपल i heard this word first time and i laughed alot because before it i heard टपल
@pratimbaidya1480
@pratimbaidya1480 2 жыл бұрын
sir, please dont asume all the students are from CS background or have coding experience in other languages before making videos. It will be very helpful for others also to understand.
@RiseUpRevolution816
@RiseUpRevolution816 4 ай бұрын
how did u change the order of cells??? in 3:27
@hardikmehta140
@hardikmehta140 Жыл бұрын
Completed 28 June 2023
@MTKadam
@MTKadam 3 жыл бұрын
sets arrange output alphabetically, bcoz i m getting so... different output if we directly see output for variable name and by using print(var name)
@awkumyoungstar2473
@awkumyoungstar2473 3 ай бұрын
sir set start from {} not from () this
@deepalisharma1327
@deepalisharma1327 3 жыл бұрын
how do we retrieve elements from a SET?
@hometvfirestick
@hometvfirestick 3 жыл бұрын
a={1,2,3,4} type(a) #to check the type print(a) #will print the whole set for ele in a: #iterating the set print(ele) check it
@hometvfirestick
@hometvfirestick 3 жыл бұрын
thanks
@CRTagadiya
@CRTagadiya 5 жыл бұрын
Which software you are using for recording
@nagendrababuavula6629
@nagendrababuavula6629 5 жыл бұрын
In python Jupiter note book
@amoghus
@amoghus 3 жыл бұрын
@@nagendrababuavula6629 no
@amoghus
@amoghus 3 жыл бұрын
He is mostly using obs for screen recording.
@vishals8307
@vishals8307 5 жыл бұрын
Sir we need tutorial for numpy , pandas , matplotlib and other libraries also.
@krishnaik06
@krishnaik06 5 жыл бұрын
Yes that will be next
@kushshri05
@kushshri05 5 жыл бұрын
Yes, I too want.. plz do ASAP
@vishalrana2185
@vishalrana2185 4 жыл бұрын
Hey krish could you please rectify the voice issue for your upcoming videos.
@padamjangid3762
@padamjangid3762 4 жыл бұрын
I am in dilemma Who it is possible that somebody is charging rupees around 50 thousands for this type course and you are providing it free. Can you explain me that who Udemy also provide the course at cheaper rate. I am confuse to go course which course one for which I have to spend 30000 and other courses from Udemy which charge 1000 and your course
@dhananjayapattnaik7428
@dhananjayapattnaik7428 5 жыл бұрын
Sir when will you start ml
@gurpreetsingh-mp7xw
@gurpreetsingh-mp7xw 2 жыл бұрын
waiting for mysql playlist.
@smile8510
@smile8510 Ай бұрын
done
@gauravsharma5616
@gauravsharma5616 3 жыл бұрын
sir where are for loop while loop videos in playlist
@samarthjuneja7616
@samarthjuneja7616 Ай бұрын
Completed on 30/06/2024
@rohitshende8788
@rohitshende8788 3 жыл бұрын
Sir I'm not able to overwrite Audi with Maruti even after writing as it is
@masc0648
@masc0648 3 жыл бұрын
[] -- list {} --- set/dict () -- tuple
@puliraju9222
@puliraju9222 4 жыл бұрын
Sir I got a doubt. Please solve this question please. Write a program which can filter odd numbers in a list by using filter function...???
@vishalrana2185
@vishalrana2185 4 жыл бұрын
#seq is the given list result = filter(lambda x: x % 2, seq) print(list(result))
@samarsamurai9991
@samarsamurai9991 3 жыл бұрын
at 2:12 he has put values in order avengers, ironman, hitman but the output comes in order ironman, avengers, hitman. How did this happen?
@lcvlogsofficial
@lcvlogsofficial 3 жыл бұрын
set makes an ordered list i tried it with numeric values too
@indreshkumar8820
@indreshkumar8820 Жыл бұрын
sir in my jupyter notebook inbuilt function is not suggesting. what can i do ?
@abhibhosale6877
@abhibhosale6877 Жыл бұрын
google it
@muhammadtalha804
@muhammadtalha804 3 жыл бұрын
Hello Krish i want to say that how in your jupyter notebook when you use a dot operator after set or list name a list of inbuilt functions is displayed while when i am trying this in jupyter notebook it is not showing that prebuilt function list can you tell me?
@HanSmellsGood
@HanSmellsGood 3 жыл бұрын
you can press tab after the dot to show the inbuilt functions
@mokshaGyanRam
@mokshaGyanRam 3 жыл бұрын
Dictionary is same as javascript object ditto
@ashisharora9649
@ashisharora9649 4 жыл бұрын
How to extract the nested dictionary and its data from this object list? I have given a data frame and in that there are multiple columns which have the string objects as nested dictionary. What could be the best way to extract the offer_price value and regular_price value from the given list of strings of nested dictionary? [ "{'offer_price': {'currency': 'GBP', 'value': 35.0}, 'regular_price': {'currency': 'GBP', 'value': 35.0}}", "{'offer_price': {'currency': 'GBP', 'value': 25.0}, 'regular_price': {'currency': 'GBP', 'value': 25.0}}", "{'offer_price': {'currency': 'GBP', 'value': 15.0}, 'regular_price': {'currency': 'GBP', 'value': 15.0}}", "{'offer_price': {'currency': 'GBP', 'value': 150.0}, 'regular_price': {'currency': 'GBP', 'value': 150.0}}", "{'offer_price': {'currency': 'GBP', 'value': 55.0}, 'regular_price': {'currency': 'GBP', 'value': 55.0}}" ]
@shahidhassan3553
@shahidhassan3553 4 жыл бұрын
How to find it on the git hub? Please help
@thokchomphalgunisingh2199
@thokchomphalgunisingh2199 4 жыл бұрын
where can i practice
@beastrocks2341
@beastrocks2341 5 жыл бұрын
Sir can we use pycharm instead
@anantv10
@anantv10 3 жыл бұрын
Do Set arrange the items alphabetically by its own
@amoghus
@amoghus 3 жыл бұрын
It takes the order given by the user.
@samarsamurai9991
@samarsamurai9991 3 жыл бұрын
@@amoghus at 2:12 he has put values in order avengers, ironman, hitman but the output comes in order ironman, avengers, hitman. How did this happen?
@kvinaya14
@kvinaya14 5 жыл бұрын
How to Google helps us sir .. without remembering
@gajulaamar9656
@gajulaamar9656 2 жыл бұрын
How we remember without help from google
@vineetkrpandey7641
@vineetkrpandey7641 4 ай бұрын
video3//12/04/2024 Done Sets, dictionaries and tuples
@indirajithkv7793
@indirajithkv7793 2 жыл бұрын
@JacklinSibiyal
@JacklinSibiyal 6 ай бұрын
Day 1 - 16/02/2024
@boredeggyolk7969
@boredeggyolk7969 3 жыл бұрын
my brain stop
Tutorial 4 - Numpy and Inbuilt Functions Tutorial
26:42
Krish Naik
Рет қаралды 303 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,1 МЛН
白天使选错惹黑天使生气。#天使 #小丑女
00:31
天使夫妇
Рет қаралды 15 МЛН
Can This Bubble Save My Life? 😱
00:55
Topper Guild
Рет қаралды 86 МЛН
Parenting hacks and gadgets against mosquitoes 🦟👶
00:21
Let's GLOW!
Рет қаралды 13 МЛН
Мы сделали гигантские сухарики!  #большаяеда
00:44
How To Become Expertise in Exploratory Data Analysis
10:05
Krish Naik
Рет қаралды 178 М.
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 141 М.
Python lists, sets, and tuples explained 🍍
15:06
Bro Code
Рет қаралды 262 М.
白天使选错惹黑天使生气。#天使 #小丑女
00:31
天使夫妇
Рет қаралды 15 МЛН