2020年11月6日 星期五

Python從安裝到開始

Python 安裝

https://pygame.hackersir.org/Lessons/01/Python_install.html

https://notcodingwilldie.blogspot.com/2018/04/python-windows-10-python.html

確認是否安裝設定成功

Python -V  (大小寫有差)

pywin32 安裝與使用教學,Python 的 Windows 擴充功能套件

https://officeguide.cc/python-windows-extensions-pywin32-installation/

PyAutoGUI : 使用Python控制電腦

https://yanwei-liu.medium.com/pyautogui-%E4%BD%BF%E7%94%A8python%E6%93%8D%E6%8E%A7%E9%9B%BB%E8%85%A6-662cc3b18b80

Python tkinter 視窗程式設計教學:Hello World

https://officeguide.cc/python-tkinter-gui-tcl-tk-interface-tutorial-examples/

Python筆記之Tkinter(Key鍵盤事件)
https://www.twblogs.net/a/5cc9aad4bd9eee1ac2edad00

Python 內建 GUI 模組 tkinter 排版問題
http://yhhuang1966.blogspot.com/2018/10/python-gui-tkinter_12.html

使用 PyInstaller 將 Python打包成 exe 檔
https://medium.com/pyladies-taiwan/python-%E5%B0%87python%E6%89%93%E5%8C%85%E6%88%90exe%E6%AA%94-32a4bacbe351

擴充套件

1. pip install pyautogui 自動控制

2. pip install pywin32 操作 Windows 下的各種應用程式

3. pip install pyinstaller 打包成exe

Python基礎之程序暫停

https://www.twblogs.net/a/5cb37083bd9eee480f07aa55



模組

import time  時間模組

//爬蟲相關模組

$ pip install beautifulsoup4

$ pip install requests

$ pip install lxml

參考網頁 https://www.learncodewithmike.com/2020/08/python-scraper-integrate-with-mysql.html

停止指令

//停止10秒,需import time模組
time.sleep(10)

//等待使用者輸入文字
print("waiting for input")
input()
print("continue")


沒有留言:

張貼留言