Python Dictionaries

SYED ASAD ZAMAN

BS Computer Science

FAST National University of Computing & Emerging Sciences

A Good Programmer is a Lazy Programmer.

Case Study

Twitter's Post

Twitter's Post


user_name:"essayyzed_"

content:"Hello-World

date-time:"14-Oct-2020"

location:"Peshawar"

retweets:5

What we studied?

  • List

  • Tuples

We need a Data Type that can do this for us!!

Dictionaries

And Good NEWS is there is ONE!!

Dictionaries

  • Key & Value Pair

  • Beautiful thing

  • No Data-Type Restrication

  • Mutable

Syntax

{key1 : value2,
key2 : value2,
-----------}

Twitter's Post

{"user_name" = "essayyzed",
"content" = "Hello World!",
"location" = "Peshawar",
"language" = "English",
"retweets" = 5}

 

Enough Talk!!

Let's see the Demo!

@essayyzed

Thank You!

Python Dictionaries

By Syed Asad Zaman

Python Dictionaries

  • 189