Python能干啥
python办公自动化(写好一套代码)
文件处理,txt,word,csv,excel,pdf,ini,json,xml
修改文件名/批量替换文件内容
pillow库 做图片处理
pdf相关
python游戏开发
2d平面游戏,有库支持3d
python后端,负责数据的增删改查 10
python爬虫,10
import re
import requests
response =requests.get('http://duanziwang.com/')
data = response.text
result = re.findall('(.*?)',data)
for i in result:
print(i)