Created
May 24, 2014 04:58
-
-
Save masazdream/12a393778e5ab274ffdc to your computer and use it in GitHub Desktop.
はじめてのPython 書式4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: UTF=8 | |
import DotInstall3 | |
__author__ = 'masahiro' | |
class SuperUser(DotInstall3.User): | |
def shout(self): | |
print "%s! is SUPER!" % self.name | |
tom = SuperUser("tom") | |
tom.shout() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment