Skip to content

Instantly share code, notes, and snippets.

@masazdream
Created May 24, 2014 04:58
Show Gist options
  • Save masazdream/12a393778e5ab274ffdc to your computer and use it in GitHub Desktop.
Save masazdream/12a393778e5ab274ffdc to your computer and use it in GitHub Desktop.
はじめてのPython 書式4
# 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