Python基于template实现字符串替换
下面介绍使用python字符串替换的方法; 1. 字符串替换 将需要替换的内容使用格式化符替代,后续补上替换内容; template = “hello %s , your website is %s ” % (“大CC”,”http://blog.me115.com”) print(template) 也可使用format函数完成: template = “hello {0} , your website is {1} “.format(“大CC”,”http://blog.me115.com”) print(template) 注:该方法适用于变量少的单行字符串替换; 2. 字
下载地址
用户评论