赞
踩
在编写批量删除的接口的时候,出现入参的json信息中有多个数据。需要提取数据。方法replace
。
入参:
{
"uuid":[115,117]
}
而sql语句中需要的uuid格式为:(115,117)
于是使用replace方法如下:
uuid=data['uuid']
sql = 'SELECT detail_name from person_liable where detail_uuid in {}'.format(uuid).replace('[','(').replace(']',')')
replace
方法用于对字符串中的元素进行替换,返回新的字符串,不对原字符串修改。
String.replece(old, new, count)
注意点:
str = '`ABCABC1211`()1221'
new_str = str.replace('1', '9', 3)
print(new_str)
print(str)
# 结果
ABCABC9299()1221
ABCABC1211()1221
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。