小册名称:Python合辑3-字符串用法深度总结
重复
字符串可以用 * 符号重复。例如:
print("Ha" * 3)Output:HaHaHa
print("Ha" * 3)
Output:
HaHaHa