本文共 133 字,大约阅读时间需要 1 分钟。
i =10while i>0: j =1 while j<=i: print('* ',end='') j+=1 print('') i-=1
转载于:https://blog.51cto.com/11518612/1970809