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
| # Web scraping from w3schools | |
| from urllib.request import urlopen as get | |
| from bs4 import BeautifulSoup | |
| b_url = 'https://www.w3schools.com/python/' | |
| n_url, s_url = 'python_intro.asp', 'python_exam.asp' | |
| page_count = 0 | |
| def start(base_url, next_url, stop_url): |
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
| # About python, before getting started | |
| ''' | |
| Python is a general-purpose interpreted, | |
| interactive, object-oriented, and | |
| high-level programming language. It was | |
| created by Guido van Rossum during 1985-1990. | |
| Python source code is available under the | |
| GNU General Public License(GPL). |