Created
May 11, 2020 19:24
-
-
Save linzino7/bf3c1dbebf62c71afe4cc323375c109c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 導入 模組(module) | |
| import requests | |
| # 把 到 ptt 八卦版 網址存到URL 變數中 | |
| URL = "https://www.ptt.cc/bbs/Gossiping/index.html" | |
| # 發送get 請求 到 ptt 八卦版 | |
| response = requests.get(URL) | |
| # 印出回傳網頁程式碼 | |
| print(response.text) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment