天天看點

玩玩python

現在這個在linux裡很普及的,學學基本文法了。。。

玩玩python

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