Advertisement
Adehumble

Week6 Coding Exercise 1

Mar 8th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. #1
  2. #1a
  3. empty={}
  4. print(empty)
  5.  
  6. print("\n")
  7. #1b
  8. my_dict={"Stephen":45, "Simeon":22, "Solomon":37}
  9. print(my_dict)
  10.  
  11. print("\n")
  12. #1c
  13. winning_lottery_numbers={
  14.  
  15. (45489): False, (67322):True
  16.  
  17. }
  18. print(winning_lottery_numbers)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement