Python
跳至導覽
跳至搜尋
Python
- 參照:『維基百科~Python_(programming_language)』
- 參照:『維基教科書~Python』
- 參照:『維基教科書~Category:Shelf:Python_programming_language』
- Python
技術文件
- 其他
- Python Tutorial
- Python 入門 – ccClub – Medium
- 從0開始學習程式-Python :: 第 11 屆 iT 邦幫忙鐵人賽
- 大數據與AI研習實作與心得 :: 第 12 屆 iT 邦幫忙鐵人賽
相關網站
- 台灣python技術論壇::python社群(pythonTW URL = Python.tw)
- Python - PyTUG wiki
- 政大應數《數理資訊》- Python討論版
- Python相關文章
相關工具或套件
- GUI
- tkinter — Python interface to Tcl/Tk — Python documentation
- Python 學習筆記 #010:用 TK Inter 模組開始設計自己的程式介面吧! | by 龔宇彥 YuYen, Kung | Kung’s Daily Life | Medium
- Tkinter Designer - Create Beautiful Tkinter GUIs by Drag and Drop
- wxPython……GUI toolkit
- PyQt
- PyGTK
- Dear PyGui
- 網路應用
- Django,參照:『維基百科~Django_(web_framework)』
- Flask,參照:『維基百科~Flask_(web_framework)』
- Bottle: Python Web Framework,參照:『維基百科~Bottle_(web_framework)』
- Quart · PyPI is an async Python web microframework.
- Dish is the original low-code framework for rapidly building data apps in Python, R, Julia, and F#.
- HTML
- 科學計算
- NumPy
- SciPy
- Norfair is a customizable lightweight Python library for real-time 2D object tracking.
- Alibi Detect
- 資料視覺化
- Matplotlib:Visualization with Python
- Diagrams
- 編譯器
- ORM
- 影像辨識
- Building CLI applications
- Typer, build great CLIs. Easy to code. Based on Python type hints.
- Rich is a Python library for rich text and beautiful formatting in the terminal.
- Debug
- 程式框架
- AI
- 硬體相關
- scalene: a high-performance CPU and memory profiler for Python
- WMI · PyPI
- 資料庫相關
- pymssql · PyPI - DB-API interface to Microsoft SQL Server
- PyMySQL · PyPI
- 遊戲相關
- 其他
- PyOpenGL……The Python OpenGL Binding
- FXpy……Python binding for FOX
- Pygments is a generic syntax highlighter written in Python
- Pydev(IDE,Eclipse的外掛)
- einops · PyPI
應用
參照:『維基百科~List_of_Python_software』
- 圍棋
- GitHub - pytorch/ELF: ELF: a platform for game research with AlphaGoZero/AlphaZero reimplementation
- GitHub - mkw120362819888/GreenGO: 圍棋程式
- 電子書
- YouTube下載
- 視訊
- OpenCV - Stream video to web browser/HTML page - PyImageSearch
- Live video streaming over network with OpenCV and ImageZMQ - PyImageSearch
- https://samkuo.me/post/2015/12/http-live-streaming-on-osx-camera-with-python/ 在 MacBook 上使用 Python 作實況視訊串流 - 我是山姆鍋]
- Python Video Streaming | Mux
- 擷取全螢幕畫面
- 分散式工作佇列
- 其他
- GitHub - mlouielu/twaddress: 台灣地址中翻英 - Taiwan Address Chinese To English
- Python 的 Big5 與 UTF-8 檔案編碼轉換程式教學 - Office 指南
跨語言整合
- 在瀏覽器裡執行
FAQ
Python的版本
python --version
Pydev開啟IntelliSense選單
- Alt + / 按鍵(右Shift左邊的 / 按鍵)
Python與中文字串
- 範例(存檔需存成UTF8的格式)
print u'中文字串範例'
跨語言版本
- 基於.NET Framework
- 基於Java VM
- 與C/C++整合
- 在網頁瀏覽器執行Python
- 使用dll檔
取得遠端網站上的檔案
import requests url = 'http://example.com/img.png' response = requests.get(url) if response.status_code == 200: with open("img.png", 'wb') as f: f.write(response.content)
關於List搜尋
- 從最前面開始找位置
list1.index(find)
- 從指定範圍的最前面開始找位置
list1.index(find, start, end)
- 從最後面開始找位置
len(list1) - list1[::-1].index(find) - 1
- 判斷是否存在
find in list1
- 判斷是否不存在
find not in list1
- 統計出現次數
list1.count(find)
將 Python打包成 exe 檔
- pyinstaller · PyPI
- 【Python】使用 PyInstaller 將 Python打包成 exe 檔 | by 飛飛 | PyLadies Taiwan | Medium
- [python 將 python檔案打包成exe. 最近接了一個爬蟲的 case,需要讓使用者不裝 python… | by Lion | cubemail88 | Medium]
- Day25-Python程式包裝成 EXE 執行檔 - iT 邦幫忙::一起幫忙解決難題,拯救 IT 人的一天
- 打包你的Python程式~PyInstaller基礎篇
將 Python 轉成 C
- Nuitka,參照:『維基百科~Nuitka』