python的%*是什么意思
在 Python 中,%* 运算符用于字符串和数字格式化。字符串格式化时,变量以特定格式(最小宽度、对齐、精度)插入字符串;数字格式化时,输出数字(最小宽度、标记、精度)以特定格式显示。
Python 中的 %* 运算符
在 Python 中,%* 运算符用于字符串格式化和数字格式化。
字符串格式化
%* 运算符用于将变量以特定格式插入字符串中。语法如下:
立即学习“Python免费学习笔记(深入)”;
'%[*][flags][width][.precision]type' % (variable, ...)
例如:
name = "John"age = 30print("My name is %s and I am %d years old." % (name, age))
输出:
My name is John and I am 30 years old.
数字格式化
%* 运算符还可用于格式化数字输出。语法如下:
'%[*][flags][width][.precision]type' % (number)
例如:
number = 123456789print('%d' % number)print('%10d' % number)
输出:
123456789 123456789