Skip to content

Instantly share code, notes, and snippets.

@013231
Created July 13, 2012 09:48
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 013231/3103973 to your computer and use it in GitHub Desktop.
Save 013231/3103973 to your computer and use it in GitHub Desktop.
class Fruit(object):
Apple = 0
Pear = 1
Banana = 2
#________________________________
#/ 其它的一些定義, \
#\ 使Fruit類可以下標訪問. /
# --------------------------------
# \ ^__^
# \ (oo)\_______
# (__)\ )\/\
# ||----w |
# || ||
print Fruit['Apple'], Fruit['Banana']
#Output: 0 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment