Advertisement
Blessing988

Untitled

Mar 7th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. empty = { }    #my empty dictionary
  2.  
  3.  
  4. my_dict = {"Movie" : 1,
  5.  
  6.            "Name of Person" : 2,
  7.  
  8.            "Gender" : 3
  9.  
  10.                      }
  11.  
  12.  
  13.  
  14. winning_lottery_numbers = {
  15.  
  16.  
  17.     (1, 2, 3) : True,
  18.  
  19.     (0, 0, 0) : False
  20.  
  21.               }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement