1. 程式人生 > >Life is short,Use Python!-----Python終章!-----Python生態

Life is short,Use Python!-----Python終章!-----Python生態

沒有生態的語言都是垃圾!

文章目錄


- 從資料處理到人工智慧

資料分析
Numpy
表達N維陣列的最基礎庫
Pandas
Python資料分析高層次應用庫
基於Numpy
SciPy
數學、科學和工程計算功能庫,類似Matlab
基於Numpy
資料視覺化
Matplotlib
高質量的二維資料視覺化功能庫
Seaborn
統計類資料視覺化功能庫
Mayavi
三維科學資料視覺化功能庫
文字處理
PyPDF2
用來處理PDF檔案的工具集
NLTK
自然語言文字處理第三方庫
Python-docx
建立或更新Microsoft Word檔案的第三方庫
機器學習
Scikit-learn
與資料處理相關的第三方庫
TensorFlow
Google AlphaGo的計算框架
MXNet
基於神經網路的深度學習計算框架

- 從Web解析到網路空間

網路爬蟲
Requests
最友好的網路爬蟲功能庫
Scrapy
優秀的網路爬蟲框架
pyspider
強大的Web頁面爬取系統
Web
資訊提取
Beautiful Soup
HTML和XML的解析庫
Re
正則表示式解析和處理功能庫
Python-Goose
提取文章型別Web頁面的功能庫
Web
網站開發
Django
最流行的Web應用框架
Pyramid
規模適中的Web應用框架
Flask
Web應用開發微框架
網路應用開發
WeRoBot
微信公眾號開發框架
aip
百度AI開放平臺介面
MyQR
生成二維碼的第三方庫

- 從人機互動到藝術設計

圖形使用者介面
(GUI)
PyQt5
Qt開發框架的Python介面
wxPython
跨平臺GUI開發框架
PyGObject
使用GTK+開發GUI的功能庫
遊戲開發
PyGame
簡單的遊戲開發功能庫
Panda3D
開源、跨平臺的3D渲染和遊戲開發庫
cocos2d
構建2D遊戲和圖形介面互動式應用的框架
虛擬現實
VR Zero
在樹莓派上開發VR應用的Python庫
pyovr
Oculus Rift的Python開發介面
Vizard
基於Python的通用VR開發引擎
圖形藝術
Quads
迭代的藝術
畫素風
ascii_art
ASCII藝術庫
turtle
廣泛認知的海龜繪圖體系

霍蘭德人格分析雷達圖

import numpy as np
import matplotlib.pyplot as plt
import matplotlib
matplotlib.rcParams['font.family']='SimHei'
radar_labels = np.array(['研究型(I)','藝術型(A)','社會型(S)',\
                         '企業型(E)','常規型(C)','現實型(R)']) #雷達標籤
nAttr = 6
data = np.array([[0.40, 0.32, 0.35, 0.30, 0.30, 0.88],
                 [0.85, 0.35, 0.30, 0.40, 0.40, 0.30],
                 [0.43, 0.89, 0.30, 0.28, 0.22, 0.30],
                 [0.30, 0.25, 0.48, 0.85, 0.45, 0.40],
                 [0.20, 0.38, 0.87, 0.45, 0.32, 0.28],
                 [0.34, 0.31, 0.38, 0.40, 0.92, 0.28]]) #資料值
data_labels = ('藝術家', '實驗員', '工程師', '推銷員', '社會工作者','記事員')
angles = np.linspace(0, 2*np.pi, nAttr, endpoint=False)
data = np.concatenate((data, [data[0]]))
angles = np.concatenate((angles, [angles[0]]))
fig = plt.figure(facecolor="white")
plt.subplot(111, polar=True)
plt.plot(angles,data,'o-', linewidth=1, alpha=0.2)
plt.fill(angles,data, alpha=0.25)
plt.thetagrids(angles*180/np.pi, radar_labels,frac = 1.2)
plt.figtext(0.52, 0.95, '霍蘭德人格分析', ha='center', size=20)
legend = plt.legend(data_labels, loc=(0.94, 0.80), labelspacing=0.1)
plt.setp(legend.get_texts(), fontsize='large')
plt.grid(True)
plt.savefig('holland_radar.jpg')
plt.show()

玫瑰花曲線繪製

import turtle as t

# 定義一個曲線繪製函式
def DegreeCurve(n, r, d=1):
    for i in range(n):
        t.left(d)
        t.circle(r, abs(d))
        
# 初始位置設定
s = 0.2 # size
t.setup(450*5*s, 750*5*s)
t.pencolor("black")
t.fillcolor("red")
t.speed(100)
t.penup()
t.goto(0, 900*s)
t.pendown()

# 繪製花朵形狀
t.begin_fill()
t.circle(200*s,30)
DegreeCurve(60, 50*s)
t.circle(200*s,30)
DegreeCurve(4, 100*s)
t.circle(200*s,50)
DegreeCurve(50, 50*s)
t.circle(350*s,65)
DegreeCurve(40, 70*s)
t.circle(150*s,50)
DegreeCurve(20, 50*s, -1)
t.circle(400*s,60)
DegreeCurve(18, 50*s)
t.fd(250*s)
t.right(150)
t.circle(-500*s,12)
t.left(140)
t.circle(550*s,110)
t.left(27)
t.circle(650*s,100)
t.left(130)
t.circle(-300*s,20)
t.right(123)
t.circle(220*s,57)
t.end_fill()

# 繪製花枝形狀
t.left(120)
t.fd(280*s)
t.left(115)
t.circle(300*s,33)
t.left(180)
t.circle(-300*s,33)
DegreeCurve(70, 225*s, -1)
t.circle(350*s,104)
t.left(90)
t.circle(200*s,105)
t.circle(-500*s,63)
t.penup()
t.goto(170*s,-30*s)
t.pendown()
t.left(160)
DegreeCurve(20, 2500*s)
DegreeCurve(220, 250*s, -1)

# 繪製一個綠色葉子
t.fillcolor('green')
t.penup()
t.goto(670*s,-180*s)
t.pendown()
t.right(140)
t.begin_fill()
t.circle(300*s,120)
t.left(60)
t.circle(300*s,120)
t.end_fill()
t.penup()
t.goto(180*s,-550*s)
t.pendown()
t.right(85)
t.circle(600*s,40)

# 繪製另一個綠色葉子
t.penup()
t.goto(-150*s,-1000*s)
t.pendown()
t.begin_fill()
t.rt(120)
t.circle(300*s,115)
t.left(75)
t.circle(300*s,100)
t.end_fill()
t.penup()
t.goto(430*s,-1070*s)
t.pendown()
t.right(30)
t.circle(-600*s,35)

#結束繪製
t.done()