五年前,以為這段愛情就這麼結束了.
但老天卻賞了我一張機會.
就這樣過了五年.
很高興你勇敢的跨出這一步!
紀念這一天,初鍋物與美國.
i = 5 def f(arg=i): print arg i = 6 f()Will print 5.
def f(a, L=[]): L.append(a) return L print f(1) print f(2) print f(3)Will print :
[1] [1, 2] [1, 2, 3]
def f(a, L=None): if L is None: L = [] L.append(a) return L
class Egg(object): def __init__(self, price): self._price = price @property def price(self): return self._price * RATE @price.setter def price(self, value): self._price = value