现在这个在linux里很普及的,学学基本语法了。。。

class human(object):
def __init__(self,input_gender):
self.gender = input_gender
def printgender(self):
print self.gender
li_lei = human('male')
print li_lei.gender
li_lei.printgender()
class happybird(object):
def __init__(self,more_words):
print 'we are happy birds.',more_words
summer = happybird('happy,happy!')
~
"hello.py" 17l, 340c written