Advertisement
Guest User

Data Types

a guest
Nov 25th, 2012
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. market_slogan = "'Happy' Farms" # String
  2. dict1 = {'Alice': '2341', 'Beth': '9102', 'Cecil': '3258'} #dictionary
  3. dict2 = ('carrots' : 'float(2.40)', 'potatoes' : 'float(3.00)', 'squash' : 'float(1.50)')
  4. #dictionary
  5. dict3 = ('Alice' : 'Los Angeles', 'Beth : Detroit', 'Cecil : New York')
  6. #dictionary
  7. list1 = ('Spring', 'Summer', 'Winter', 'Fall')
  8. #list
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement