Advertisement
Dammiejoy20

Untitled

Mar 8th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. # Dictionary with key-value pairs with keys as strings and floats and values as booleans and lists
  2. complexity = [
  3.     {"Beautiful": True, "Ugly": False},
  4.     {1.46: ["Strong", "Power"], 3.67: ["Sci-fi", "Horror", "Romance"], 5.98: ["Strawberry", "Apple", "Grapes"]},
  5.     {"Beans": False, "Chocolate": True},
  6.     {0.23: ["Bespoke"], 6.9: ["Forever", "Disperse", "Diva", "Exotic"], 10.99: ["I Love Mathematics"]}
  7. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement