Created
May 24, 2014 04:58
-
-
Save masazdream/b95f5782dc78a33cc944 to your computer and use it in GitHub Desktop.
はじめてのPython 書式3
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 | |
| __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