Skip to content

Instantly share code, notes, and snippets.

@sakti
Created March 26, 2013 04:57
Show Gist options
  • Save sakti/5243239 to your computer and use it in GitHub Desktop.
Save sakti/5243239 to your computer and use it in GitHub Desktop.
# list
buah = ['duku', 'jeruk', 'semangka']
# dictionaries
duku = {'warna': 'krem', 'berat': 10, 'rasa': 'asem'}
jeruk = {'warna': 'hijau', 'berat': 30, 'rasa': 'kecut'}
semangka = {'warna': 'kuning', 'berat': 90, 'rasa': 'manis'}
for item in buah:
print locals()[item]['warna']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment