python中数字和字符串可直接相乘

a = 1
while a < 5:
    print(a * '*')  # 数字和字符可以直接相乘
    a += 1

python中数字和字符串可直接相乘_第1张图片

你可能感兴趣的:(python)