python
python
寻梦867
这个作者很懒,什么都没留下…
展开
-
python 去除不可见字符\u200b 方法收集
str='\u200b python\u200b'#首尾可以用strip()str1=str.strip(u'\u200b')print(str1)#将整个句子中的进行替换str2=str.replace(u'\u200b', '')print(str2)#re.sub进行替换str3=re.sub(r'\u200b','',str)print(str3)原创 2021-09-15 16:22:14 · 3113 阅读 · 0 评论 -
if not any 进行过滤笔记
urls=['https://www.xxx.com/mutongfan/', 'https://www.xxx.com/juanbing/', 'https://www.xxx.com/mianshi/',]filter_urls = ['/mutongfan/', 'juanbing', 'hundun', 'xiaochi', 'huoguo', 'kuaican', 'ganxi']myArray=['12','23']for url in urls: if.原创 2021-09-15 15:50:42 · 519 阅读 · 0 评论 -
re.findall,re.compile,re.search,re.sub 使用方法笔记
import requestsimport reimport randomfrom fake_useragent import UserAgentfrom urllib.parse import urljoindef get_html(url): ua=UserAgent(verify_ssl=False) headers={'User-Agent':ua.random} response=requests.get(url,headers=headers) .原创 2021-09-15 15:38:59 · 526 阅读 · 0 评论 -
python笔记(pymysql基本用法)连接mysql数据库
import pymysqlMYSQL_HOST = '127.0.0.1'MYSQL_DBNAME = 'bgh' #数据库名字,请修改MYSQL_USER = 'root' #数据库账号,请修改MYSQL_PASSWD = '' #数据库密码,请修改MYSQL_PORT = 3306 #数据库端口,在dbhelper中使用#数据库保存def data_save(data): # 打开数据库连接.原创 2021-09-15 15:30:58 · 303 阅读 · 0 评论