当前位置 : 主页 > 编程语言 > python >

python3 使用format拼接url

来源:互联网 收集:自由互联 发布时间:2022-07-19
python3 使用format函数对URL进行拼接 # 完整的url url = 'https://www.aliexpress.com/item/1215121315.html' # 尝试拼接 url = 'https://www.aliexpress.com/item/-/{}.html' . format ( 1215121315 ) print ( url ) https : / / www . ali


python3 使用format函数对URL进行拼接

# 完整的url
url = 'https://www.aliexpress.com/item/1215121315.html'
# 尝试拼接
url = 'https://www.aliexpress.com/item/-/{}.html'.format(1215121315)
print(url)
https://www.aliexpress.com/item/-/1215121315.html


上一篇:python_列表的增删改查
下一篇:没有了
网友评论