a = '{} is my love'.format('python') print(a)输出:python is my love
字符串格式化符就像是做选择题 留了空给做题者选择。在爬虫过程中,有些网页链
接的部分参数是可变的,这时使用字符串格式化符可以减少代码的使用量。例如, Pexels
素材网 https: //www .pexels com/ ),当搜索图片时,网页链接也会发生变化,如在搜索
中输入 book ,网页跳转为 https: //www.pexe s.com/search/book/ ,可以设计如下代码,笔
只需输入搜索内容,便可返回网页链接。
current = input('请输入内容:') url_path = 'https://www.pexels.com/search/{}/'.format(current) print(url_path)
请输入内容:book
https://www.pexels.com/search/book/
运行程序井输入 book,便可返回网页链接,单击网页链接便可访问网页了