Tutorial 3- Python Sets, Dictionaries and Tuples

preview_player
Показать описание
Hello All,
Welcome to the Python Crash Course. In this video we will see about python basics datatypes and operation

Connect with me here:

If you like music support my brother's channel

Buy the Best book of Machine Learning, Deep Learning with python sklearn and tensorflow from below
amazon url:

You can buy my book on Finance with Machine Learning and Deep Learning from the below url

Subscribe my unboxing Channel

Below are the various playlist created on ML,Data Science and Deep Learning. Please subscribe and support the channel. Happy Learning!

You can buy my book on Finance with Machine Learning and Deep Learning from the below url

🙏🙏🙏🙏🙏🙏🙏🙏
YOU JUST NEED TO DO
3 THINGS to support my channel
LIKE
SHARE
&
SUBSCRIBE
TO MY YOUTUBE CHANNEL
Рекомендации по теме
Комментарии
Автор

[] = Brackets
() = Parenthesis
{} = Curly Braces
In-built = Built-In

At one time I also used to call them interchangeably :)

DeepakSharma_youtube
Автор

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

sarojrout
Автор

i love the way you explained everything was so easily to understand

xnutpnh
Автор

Ur videos + Documentation brushed off my python skills :)

pritishpattnaik
Автор

Thanks a lot for the tutorial. I'm basically following your python playlist. It helps a lot for newbie like me.

nurulnajwasafie
Автор

Hit like if you are here after seeing Krish's latest video on How to learn Data Science using his videos !

ashayjain
Автор

you are an amazing teacher Krish. Much appreciated!

awakenwithoutcoffee
Автор

Best 👍💯 I want more videos this playlist

shivendradubey
Автор

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.

harshkr
Автор

Sir, please upload videos on sql related to data science as well!

tejaswigutta
Автор

Your videos help me a lot to get a clear idea. Thanks for the tutorials. Keep going.

afrinahossain
Автор

Brief and concise perfect content for learning ❤️🔥🔥🔥💯

uditarora
Автор

Thank you sir for this outstanding tutorial.

koustavpaul
Автор

Eagerly waiting for more videos on deployment

rusteze
Автор

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

arvindjoshi
Автор

Thank you very much, these videos are giving me much command on python related to ML

balug
Автор

Nice help to aspirants of python learning

dr.narendrakumar
Автор

sir please make a complete videos on artificial intelligence course

kalyaniaksv
Автор

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?

soumalyadutta
Автор

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 ?

poojanpatel