本文实例讲述了Python爬虫实现抓取京东店铺信息及下载图片功能。分享给大家供大家参考,具体如下:
这个是抓取信息的
from bs4 import BeautifulSoup import requests url = 'https://list.tmall.com/search_product.htm"htmlcode">from bs4 import BeautifulSoup import requests import urllib.request url = 'https://list.tmall.com/search_product.htm"htmlcode">theString = 'saaaay yes no yaaaass' print theString.strip('say')theString依次被去除首尾在
['s','a','y']
数组内的字符,直到字符在不数组内。所以,输出的结果为:yes no
比较简单吧,
lstrip
和rstrip
原理是一样的。注意:当没有传入参数时,是默认去除首尾空格和换行符的。
theString = 'saaaay yes no yaaaass' print theString.strip('say') print theString.strip('say ') #say后面有空格 print theString.lstrip('say') print theString.rstrip('say')运行结果:
yes no
es no
yes no yaaaass
saaaay yes no更多关于Python相关内容可查看本站专题:《Python Socket编程技巧总结》、《Python正则表达式用法总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。