python

sofucker 发表于 6个月前 · 关联问题 倒三角形

n=int(input()) for i in range(n,0,-1): print(' '*(n-i)+'#'*(2*i-1))