14 變量與變量的作用
阿新 • • 發佈:2019-05-04
繼續 div code traffic python pan col 調用 消費
計算機的主要作用之一是進行運算,用python進行數值運算非常容易,跟我們平常用計算器一樣簡單:
1 >>> print(‘eat‘,10+15+7+4+7+3) 2 eat 46 3 >>> print(‘cloth‘,20) 4 cloth 20 5 >>> print(‘traffic‘,6+6+6+6+6) 6 traffic 30 7 >>> print(‘精神‘,300+300+400+200) 8 精神 1200 9 >>> 10 >>> 11 >>> print(‘總消費‘, 46+20+30+1200) 12 總消費 1296
1 >>> eat = 10+15+7+4+7+3 2 >>> cloth = 20 3 >>> traffic = 6+6+6+6+6 4 >>> 精神=300+300+200+400 5 >>> 6 >>> total = eat + cloth + traffic + 精神 7 >>> print(‘總消息‘,total) 8 總消息 1296
eat,cloth,traffic,精神,total這幾個名字的作用,就是把程序運算的中間結果臨時存到內存裏,以備後面的代碼繼續調用,這幾個名字的學名就叫做“變量”
14 變量與變量的作用