自學Python DAY 3
自學Python DAY 3
今天看了兩章,算是把基礎的東西都看過了,下一章是綜合練習,一看程式才發現,之前的有的沒有掌握好,所以明天準備抽一天認真總結規劃前十章所學內容,查漏補缺更新到前面的筆記中。
今日所學-
Python的模組與檔案操作:
模組可以理解為c裡的標頭檔案,匯入模組後,裡面的函式可以呼叫,簡化程式碼,提高效率。
用import關鍵詞來載入模組,然後在後面的程式碼裡採用就可以。
檔案就更能理解了,只要是學過程式語言的對檔案操作都不陌生,而Python更加優化了對檔案的操作:
st = open("st.txt","w")
st.write("Hello world!")
st.close
上面是一個經典的檔案開啟,存取資訊然後關閉的過程,而Python更加優化了操作,為了避免忘記關掉檔案,可以with語句來簡寫程式碼:
with open("st.txt","w") as f:
f.write("Hello world!")
簡單快捷,一步搞定,確實很牛。
讀取檔案還是一樣的,“w”“r”,然後講了一個內建模組處理csv型別檔案的,感覺理解了就可以,如果不用excel感覺以後不會接觸(不過說這話的語氣受限於知識,萬一以後發現很常用呢,再來把這句話刪掉)
ok 就這樣,去複習以前的內容去了
相關文章
- 自學老男孩python-day04Python
- 自學老男孩pyhton-day02,day03
- 暑期自學 Day 16 | Spring (二)Spring
- 暑期自學 Day 15 | Spring (一)Spring
- 暑期自學 Day 17 | Spring (三)Spring
- 暑期自學 Day 18 | Spring (四)Spring
- 暑期自學 Day 20 | Spring (六)Spring
- 暑期自學 Day 19 | Spring (五)Spring
- Python學習DAY9Python
- 暑期自學 Day 21 | Spring Boot(一)Spring Boot
- python學習之路—day1Python
- Python自學02day——變數和簡單的資料型別Python變數資料型別
- Vue學習基礎day-3Vue
- 暑期自學 Day 09 | 資料庫(一)資料庫
- python基礎學習day2Python
- 暑期自學 Day 10 | 資料庫 (二)- DML資料庫
- 暑期自學 Day 10 | 資料庫 (三)- DQL資料庫
- 暑期自學 Day 08 | Junit,反射,註解(二)反射
- 暑期自學 Day 07 | Junit,反射,註解(一)反射
- Python學習 day01打卡Python
- 小白自學Python(一) -- Python教程Python
- Python 學習3Python
- Python自學要點!Python
- Day3
- [PTA]day 3
- linux學習day3——shell指令碼上Linux指令碼
- 暑期自學 Day 11 | 資料庫 (四)- 約束資料庫
- 暑期自學 Day 14 | 資料庫 (七)- 事務資料庫
- 暑期自學 Day 04 | File 類 和 IO 流(四)
- 暑期自學 Day 05 | File 類 和 IO 流(五)
- 暑期自學 Day 01 | File 類 和 IO 流(一)
- 暑期自學 Day 02 | File 類 和 IO 流(二)
- 暑期自學 Day 03 | File 類 和 IO 流(三)
- 暑期自學 Day 09 | 資料庫(一)- SQL,DDL資料庫SQL
- 暑期自學 Day 06 | 網路程式設計(一)程式設計
- 暑期自學 Day 06 | 網路程式設計(二)程式設計
- python學習 day018打卡 反射Python反射
- Python全棧學習_day006作業Python全棧