1. 首页
  2. 数据库
  3. 其它
  4. Python基于template实现字符串替换

Python基于template实现字符串替换

上传者: 2021-02-01 13:28:39上传 PDF文件 32.68KB 热度 37次
下面介绍使用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. 字
下载地址
用户评论