Skip to content

Instantly share code, notes, and snippets.

@masazdream
Created May 24, 2014 04:58
Show Gist options
  • Select an option

  • Save masazdream/b95f5782dc78a33cc944 to your computer and use it in GitHub Desktop.

Select an option

Save masazdream/b95f5782dc78a33cc944 to your computer and use it in GitHub Desktop.
はじめてのPython 書式3
# coding: UTF-8
__author__ = 'masahiro'
class User(object):
def __init__(self, name,):
self.name = name
def greet(self):
print "my name is %s!" % self.name
nico = User("Nico")
brian = User("Brian")
print nico.name
nico.greet()
brian.greet()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment