python從入門到實踐

2021-09-25 04:22:20 字數 516 閱讀 3605

1.json初探

import json

#json模組初探

#json在pytho之間分享資料

#json.dump(a,b),要儲存的資料和用於儲存資料的檔案物件

#json.load(),將資料載入記憶體

number= [1,2,3,4,5,6,7]

filename ='number.json'#副檔名.json指出檔案儲存的資料為json格式

with open(filename,'w') as file:

json.dump(number,file)

print('-------------------我是快樂的分割線-----------')

with open(filename) as file:

contents=json.load(file)#load()和loads()方法不同

print(contents)#不能寫在讀取檔案中

2.重構,就是將功能細分

python從入門到實踐

1.類,例項化是根據類來建立物件 類的實踐 建立乙個人類 class humans 3.7版本不加括號 def init self,name,height 血的教訓init前後兩條下劃線,self不是類的關鍵字 self.name name self.self.height height def l...

python從入門到實踐7 6

電影票 有家電影院根據觀眾的年齡收取不同的票價 不到3歲的觀眾免費 3 12歲的觀眾為10美元 超過12歲的觀眾為15美元。請編寫乙個迴圈,在其中詢問使用者的年齡,並指出其票價.在while 迴圈中使用條件測試來結束迴圈。使用變數active 來控制迴圈結束的時機。使用break 語句在使用者輸入 ...

python從入門到實踐筆記

1.字串的一些方法,title 首字母大寫顯示單詞,upper 大寫,lower 轉化為小寫,儲存資料時,此方法很有用,一條原則,一般將字串轉換為小寫,儲存資料 weather cold print weather.title print weather.upper print weathe.low...