Advertisement
ancestor_tunji

#1

Mar 8th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #Ass 1
  2. empty = {}
  3. print(empty)
  4. print()
  5.  
  6. my_dict = {
  7. "day" : 8,
  8. "month" : 3,
  9. "year" : 2020
  10. }
  11. print(my_dict)
  12. print()
  13.  
  14. winning_lottery_numbers = {
  15. (1 , 2) : True,
  16. (3 , 5) : False
  17. }
  18. print(winning_lottery_numbers)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement