python中的%s%是一个字符串格式化语法,Python支持将值格式化为字符串。最基本的用法是将值插入到%s 占位符的字符串中。
使用方法:
'Hello, %s' % 'world'
'Hello, world'
'Hi, %s, you have $%d.' % ('Michael', 1000000)
'Hi, Michael, you have $1000000.'
使用的时候不知道写什么的地方直接使用 %s 进行代替,语句的末尾加上 %() 括号里面直接填写内容即可,字符串加上引号,中间用“,”分割。