[TOC]#30、第三周-第02章節-Python3.5-上節內容回顧1.列表,元組操作2.字元串操作3.字典操作#31、第三周-第03章節-Python3.5-集合及其運算##集合運算list_1 = [1,2,3,2]print("list_1:",list_1)set_1 = set(list ...
[TOC]
#30、第三周-第02章節-Python3.5-上節內容回顧
1.列表,元組操作
2.字元串操作
3.字典操作
#31、第三周-第03章節-Python3.5-集合及其運算
##集合運算
list_1 = [1,2,3,2]
print("list_1:",list_1)
set_1 = set(list_1)
print("set_1:",set_1)
set_2 = {2,3,4}
print("set_2",set_2)
\#交集
print("交集:",set_1.intersection(set_2))
print(set_1 & set_2)
\#並集
print("並集:",set_1.union(set_2))
print(set_1 | set_2)
\#差集
print("差集",set_1.difference(set_2)) #從set_1中去掉set_2中也有的元素
print(set_1 - set_2)
\#子集
print("子集",set_1.issubset(set_2))
set_3 = {2,3}
print("set_3:",set_3)
print("子集",set_3.issubset(set_2))
\#父集
print("父集",set_1.issuperset(set_3))
\#對稱差集:把兩個集合中重覆的元素去掉後合併的新集合
print("對稱差集",set_1.symmetric_difference(set_2))
print(set_1 ^ set_2)
\#判斷是否無交集,無有交集返回true,有則返回false
print(set_1.isdisjoint(set_2))
##集合操作
\#增加
set_1.add("") #增加一個元素
set_1.update(['','1','1']) #增加多個元素
print(set_1)
\#刪一項
set_1.remove("1")
print(set_1)
\#set_1.pop() #隨機刪除一個元素,並把刪除的字元返回
\#set_1.discard("1") #刪除指定元素,如果元素不存在,就什麼也不做
\#如果不指定元素,則刪除所有的set_1的元素
\#判斷x是否是a的成員(適用於字典,列表,集合,字元串)
\# x in a
strings = "my name is"
if "name" in strings:
print("name in strings")
\#x not in a
#32、第三周-第04章節-Python3.5-文件讀與寫詳解1
##只讀模式,只寫模式(創建文件),追加模式
f = open("file_test.txt",'w',encoding="utf-8") #文件句柄
f.write("I love python!\n")
f.write("I love python3!\n")
f.close()
f = open("file_test.txt",'r',encoding="utf-8") #文件句柄
date = f.read()
print(date)
f.close()
f = open("file_test.txt",'a',encoding="utf-8") #文件句柄
f.write("I love python4!\n")
f.write("I love python5!\n")
f.close()
#33、第三周-第05章節-Python3.5-文件讀與寫詳解2
##讀取文件每行
小文件:可以將文件整個讀取到記憶體中
```
f = open("file_test.txt",'r',encoding="utf-8")
\# print(f.readlines().strip())
\# print(f.readline().strip())
for line in f.readlines():
print(line.strip())
f.close()
```
大文件:
```
f = open("file_test.txt",'r',encoding="utf-8")
count = 0
for line in f:
if count == 2:
print("---我是分割線---")
count += 1
continue
print(line.strip())
count += 1
f.close()
```
#34、第三周-第06章節-Python3.5-文件讀與寫詳解3
f.fileno() #文件在記憶體中的編號
f.flush() #將記憶體中緩存的未真正寫入文件的數據強制立即寫入文件
f.readable()
f.seekable()
f.writable()
f.seek()
f.tell() #告知句柄指針指向文件的位置
```28:11
```
f = open("file_test.txt",'r+',encoding="utf-8") #讀寫
\#f = open("file_test.txt",'w+',encoding="utf-8") #寫讀,先創建一個文件,再寫入
\#f = open("file_test.txt",'a+',encoding="utf-8") #追加讀寫
\#f = open("file_test.txt",'wb',encoding="utf-8") #二進位編碼處理
#36、第三周-第08章節-Python3.5-文件修改詳解
```
f = open("file_test.txt","r",encoding="utf-8")
f_new = open("file_new_test.txt","w",encoding="utf-8")
for line in f:
if "I love python3" in line:
line = line.replace("I love python3","------alex是分割線---------")
f_new.write(line)
f.close()
f_new.close()
```
#37、第三周-第09章節-Python3.5-字元編碼轉換詳解1
為了避免文件打開後,忘記關閉,可以使用with open() as f:
代替以前的open()賦值給f
example:
```
with open("file_test.txt","r",encoding="utf-8") as f, \
open("file_new_test.txt","w",encoding="utf-8") as f_new:
for line in f:
if "I love python3" in line:
line = line.replace("I love python3","------alex是分割線---------")
f_new.write(line)
```
規範:python建議每行不超過80個字元,如果超過,可使用‘\’來連接
##編碼
![decode_encode](assets/markdown-img-paste-20180725234507594.png)
##列印預設編碼
import sys
print(sys.getdefaultencoding())
#38、第三周-第10章節-Python3.5-字元編碼轉換詳解2
python3中預設以byte存儲
```
#!/usr/bin/env python
#-*-coding:gbk -*-
#author: Mr.Wu
import sys
s = '你好'
print(s.encode("gbk"))
print(s.encode("utf-8"))
print(sys.getdefaultencoding())
print(s.encode("utf-8").decode("utf-8").encode("gbk").decode("gbk"))
```
#39、第三周-第11章節-Python3.5-函數與函數式編程1
#40、第三周-第12章節-Python3.5-函數與函數式編程2
```
import time
def logger():
time_format = '%Y-%m-%d %X'
current_time = time.strftime(time_format)
print(current_time)
```
#41、第三周-第13章節-Python3.5-函數式編程之參數詳解1
##關於return
當返回值的個數為0,則返回None
當返回值的個數為1,則返回object
當返回值的個數為>1,則返回tuple類型,tuple中元素為返回的各個值
##形參和實參
##標準調用和關鍵字調用
```
def test(x,y,z):
print(x)
print(y)
print(z)
test(1,2,3) #標準調用,形式參數的位置必須一一對應
test(y=4,z=5,x=6) #關鍵字調用,形式參數位置無需固定
test(4,z=5,y=6)
特別註意:同時使用位置調用與關鍵字調用,關鍵字參數不能寫在位置參數之前
```
#42、第三周-第14章節-Python3.5-函數式編程之參數詳解2
##函數預設參數
```
def test(x,y=1):
print(x)
print(y)
test(1)
test(1,2)
```
##參數列表
接受位置參數調用,不能接受關鍵字參數調用
```
def test(*args):
print(args)
test(1,2,3)
test({'a':1})
#####
#組合應用
def test(x,*args):
print(x)
print(args)
test(1,2,3)
test({'a':1})
```
##關於**kwargs參數
把關鍵字參數轉為字典的形貌傳入,只能接受關鍵字參數調用
```
def test(**kwargs):
print(kwargs)
test(name='alex',age=100,job='IT')
```
#43、第三周-第15章節-Python3.5-局部變數與全局變數作用域1