Python怎么重复输出一个字符?
python中重复输出一个字符的方法:
1、在输出字符时直接将字符乘于要重复输出的个数
print("a"*5)
输出结果如下:
aaaaa
2、在循环中重复输出字符
i=0 while i<4: print("a") i=i+1
输出结果:
a
a
a
a
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html
python中重复输出一个字符的方法:
1、在输出字符时直接将字符乘于要重复输出的个数
print("a"*5)
输出结果如下:
aaaaa
2、在循环中重复输出字符
i=0 while i<4: print("a") i=i+1
输出结果:
a
a
a
a
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html