python中如何重复打印很多遍?
python中重复打印很多遍的方法:
1、使用多个print()函数进行打印
strings = "a" # 字符串变量 print(strings) print(strings) print(strings) print(strings)
输出结果如下:
2、使用循环
strings = "a" # 字符串变量 for i in range(3): print(strings)
结果如下:
3、在输出函数中将要输出的内容*n
strings = "a" # 字符串变量 print(strings * 5)
结果如下:
数字的话要预处理一下:
numbers = 8 print(numbers * 5) print(str(numbers) * 5)
更多Python知识请关注云海天Python教程栏目。
来源:PY学习网:原文地址:https://www.py.cn/article.html