Python 使用技巧

2021-09-03 08:14:48 字數 536 閱讀 9847

開啟本地伺服器,監聽某個埠

切換到目標路徑下,開啟終端

python -m ******httpserver 8010
python3 -m http.server 8010
如需訪問,瀏覽器轉到

http://localhost:8010/
如果手機想要訪問的話,那麼需要在同一網段(wifi 或熱點)。

更多詳細操作,點這裡~

為專案自動生成 requirements.txt

pip3 freeze > requirements.txt
pip3 install pipreqs

pipreqs . --encoding=utf8

pip3 install -r requirements.txt
2to3 - automated python 2 to 3 code translation

python用法技巧 python使用技巧 一

一 plt繪製條形圖 importmatplotlib.pyplot as pltimport matplotlib 引入 設定label list 2014 2015 2016 2017 橫座標刻度顯示值 num list1 20,30,15,35 縱座標值1 rects1 plt.bar ran...

bpython使用技巧 Python 小技巧

python 隱秘的角落 1.args 和 kwargs 的使用 此處一定要注意 python 中有預設值得引數一定一定要放在沒有預設值的後邊。args 是以元組型別傳入 kwargs 是字典型別傳入 def parameter learn parameter 1,parameter 2 none,...

Python使用技巧集合

iterable list hello world for i,item in enumerate iterable print i,item 同時引數二可以指定開始索引 for i,item in enumerate iterable,1 print i,itemmy list i i for i...