以下代码需要像这样打印:
Face frequency
1 *
2 * * *
3 * * * *
4 * * *
5 * * * * * * *
6 * * * * * * *
标记数字的数字,以及标记出现该数字的频率的星号。
print ("Face frequency")
index = 1
while index<len(die_count):
print (index, end = " ")
for k in range (0, die_count[index]):
print ("*", end = " ")
index += 1
这是代码,但它打印如下:
Face frequency
1 * 2 * * * 3 * * * * 4 * * * 5 * * * * * * * 6 * * * * * * *
如何让它以首次显示的方式打印?
答案 0 :(得分:0)
当然你只是使用打印新线?可以使用/n
完成。