Python學習筆記

一、python知識點總結:python基礎篇(一)   python基礎篇(二)   python包管理之pip   VS code unresolved import "xxx"   python中pip安裝加速   python3鏈接Mysql的條件  python數據庫操做  強制類型轉換  centos7安裝python3.7  print重定向到.txt文件  if __name__ == '__main__'的做用(禁止導入模塊就整個運行對用.py腳本)   win10安裝pypy  python的包管理工具---Anaconda   解決vscode python print 輸出窗口中文亂碼的問題  Python經過pandas操做excel經常使用功能html

 

2,vscode中lanuch.json設置python環境(解決部分模塊不能載入的問題):python

{
    // 使用 IntelliSense 瞭解相關屬性。 
    // 懸停以查看現有屬性的描述。
    // 欲瞭解更多信息,請訪問: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: 當前文件",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "env": {"PYTHONPATH" : "${workspaceRoot}"},           
            "envFile": "${workspaceFolder}/.env"
        }
    ]
}
View Code
相關文章
相關標籤/搜索