我想打印一个字符或字符串,例如’-‘n次。
我可以不使用循环就做吗?
print('-',3)
..这意味着打印-3次,如下所示:
-
---
Python 2.x:
print '-' * 3
Python 3.x:
print('-' * 3)