看效果: 不扯没用的,直接上代码: # author : sunzd # date : 2019/9/01 # position : beijing from fake_useragent import UserAgent from bs4 import BeautifulSoup from urllib import request from urllib import error import re import time def html_request(url): if url is N…
python入门学习:6.用户输入和while循环 关键点:输入.while循环 6.1 函数input()工作原理6.2 while循环简介6.3 使用while循环处理字典和列表 6.1 函数input()工作原理 函数input()让程序暂停运行,等待用户输入一些文本.函数input()接受一个参数:即要向用户显示的提示或说明,让用户知道该如何做. 1message = input("Tell me something, and I will repeat it back to you…