使用 %类型 来填充 常用的有:%s 填充字符串类型:%d 填充 int 类型:这里是沿用了 C语言中 printf() 函数中的格式,更多的信息请查看:完整列表 name = 'tommy' message = 'hello %s' % name print(message) 结果是:hello tommy 同时填充多个时,需要使用元组 name = 'tommy' age = 29 message = 'my name is %s, i am %d years old.' % (name,…
python 判断字符串中是否只有中文字符 学习了:https://segmentfault.com/q/1010000007898150 def is_all_zh(s): for c in s: if not ('\u4e00' <= c <= '\u9fa5'): return False return True…