在Python中,乘法运算符(*
)用于相乘两个数字或重复一个字符串多次。
✏️ 语法
operand1 * operand2
在上面的代码中,operand1
和operand2
可以是任何数字值或字符串。
📘 示例
# 相乘两个数字
num1 = 5
num2 = 3
result = num1 * num2
print(result) # 输出: 15
# 重复一个字符串
string = "Hello"
repeated_string = string * 3
print(repeated_string) # 输出: HelloHelloHello
在上面的代码中,我们首先使用乘法运算符*
相乘两个数字num1
和num2
,并将结果存储在result
变量中。
然后,我们打印结果,得到输出15
。
接下来,我们使用乘法运算符*
将字符串"Hello"
重复三次,并将结果存储在repeated_string
变量中。
最后,我们打印repeated_string
,得到输出HelloHelloHello
。