注释代码
while -2:temp = int(input('请输入一个整数:'))
i = ' '
a = '*'
b = 1
while temp:
print(i*temp+ a*b)
temp -= 1
b += 2
首先用while使得整个程序能够一直循环下去,只要不是为0的数都为true,对temp进行整型赋值,i赋值为空格,a赋值为*号,b赋值为1,为后面*的递增做准备,当temp不为0可以重复执行以下代码,首先打印出最多的空格,再打印星号,注意:用+来进行连接。
页:
[1]