Skip to content

Instantly share code, notes, and snippets.

@jamesnvc
Forked from anonymous/gist:597537
Created September 26, 2010 03:02
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 jamesnvc/597549 to your computer and use it in GitHub Desktop.
Save jamesnvc/597549 to your computer and use it in GitHub Desktop.
import media
def sum_red(pic):
total = 0
for p in pic:
r = media.get_red(p)
total = r + total
return total
if __name__ == '__main__':
print sum_red(media.load_picture(media.choose_file()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment