Created
May 2, 2020 19:07
-
-
Save linzino7/a4ed44723c122911fc58d370eac5d95c 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
| # import requests 套件包 | |
| import requests | |
| # GET請求抓資料 | |
| page = requests.get('https://www.google.com.tw/') | |
| #印出網頁程式碼 | |
| print(page.text) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment