Skip to content

Instantly share code, notes, and snippets.

@taboularasa
Created March 10, 2009 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taboularasa/76604 to your computer and use it in GitHub Desktop.
Save taboularasa/76604 to your computer and use it in GitHub Desktop.
> results = []
> for app in apps:
> results.append({"appname" : app.appname})
just a small tip.. you can write this as
results = [ {"appname": app.appname} for app in apps ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment