雲課堂 Python學習簡單示例

leixue0906發表於2015-07-05
網易雲課堂 Python學習簡單示例

1、函式定義和呼叫

  1. #!/usr/bin/python


    a = 100
    def fun():
        if True:
            print "good"
    print a
    fun()
    fun()


    if True:
        fun()
執行結果:
100
good
good
good

2、函式形參、實參、預設引數

  1. #!/usr/bin/python
    #enconding:utf8


    def fun(x,y):
        if x == y:
            print x,"=",y
        else:
            print x,"!=",y
    def machine(y,x=3):
        print "生成一個",x,'元',y,'口味冰淇淋!'


        
    #s = raw_input("input something:")
    #s2 = raw_input("input something:")
    #fun(s,s2)


    machine('巧克力')


執行結果:
>>> 
生成一個 3 元 巧克力 口味冰淇淋!





來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26845409/viewspace-1723822/,如需轉載,請註明出處,否則將追究法律責任。

相關文章