Skip to content

Instantly share code, notes, and snippets.

@yaotti
Created December 13, 2009 11:13
Show Gist options
  • Save yaotti/255385 to your computer and use it in GitHub Desktop.
Save yaotti/255385 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# coding: utf-8
def say(word=None):
print word
if __name__ == '__main__':
say(word='hi')
say(**{'word': 'hi'})
say(**{'wo'+'rd': 'hi'})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment