Followers

Monday, July 5, 2021

Dictionary - Data Types

Hello Friends, Welcome to our Website Python11. Today we will talk about Complex Number which is a Subheading of Numbers. 

To understand this New topic you need to First read our last post which was on :

Dictionary 



Dictionary data type is another feature in Python's hat. The dictionary is an unordered set of comma-separated key : value pairs, within {}, with the requirement that within a dictionary, no two keys can be the same (i.e., there are unique keys within a dictionary). For instance, following are some dictionaries : 

               {'a' : 1, 'e' : 2, 'i' : 3, 'o' : 4, 'u' : 5}

    >>>vowels = {'a' : 1, 'e' : 2, 'i' : 3, 'o' : 4, 'u' : 5}

    >>>vowels['a']

    1

     >>>vowels['u']

    5

Dictionaries shall be covered in details in a later Posts. 


Following figure summarizes the core data types of Python. 



So with this, we end with this Topic, don't forget to follow me so that you can get the latest updates of my new posts that I upload weekly, I will try my best to upload daily OR you can Sign up for Newsletters at the top of the Blog and that will give you E-mail updates of my New Post.
Jai Hind!!!!

Vande Mataram!!! 

No comments:

Post a Comment

If you have any doubts, please do let me Know.