Advertisement
Guest User

farmers.py

a guest
Nov 6th, 2013
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. farmer and booth, type dict{}
  2. farmer = {'melonero' : 1, 'patatero' : 2, 'limonero' : 3}
  3.  
  4. market slogan type string
  5. slogan = "the best"
  6.  
  7. product is a dict{}
  8. product = {'limones': 4, 'naranjas': float(2.5) }
  9.  
  10. growing seasons type tuple()
  11. seasons = ('spring', 'summer', 'fall', 'winter')
  12.  
  13. cities is another dict{}
  14. cities= { 'melonero' : 'mordor', 'limonero' : 'helm' }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement