标签: python
考虑:
print "%s is %d years old." % ('Meirav', 5)
字符串文字和元组之间的%运算符是什么?除了在print语句中,它在Python中还能看到什么?
%
答案 0 :(得分:9)
It's known as the "string formatting" or "interpolation" operator,它可以用在任何你想要将格式化数据插入字符串的地方。