question
temp = input('请输入一个整数:')num = int(temp)
while num:
i = num - 1
while i:
print(' ',end='')
i = i-1
j = num
while j:
print('*',end='')
j = j - 1
print()
num = num - 1
#倒数第二行为什么要有个print(),还有就是print()代表什么? print() 用于打印一个换行符。 print()没有参数的话,代表换一行
详见:https://fishc.com.cn/forum.php?mod=viewthread&tid=141463&highlight=print
页:
[1]