Python仿金字塔输出 这是一道用 ’ * ’ 输出仿金字塔的题目! 注意:金字塔右对齐 n=int(input()) i=n for i in range(n,0,-1): print(" "*(n-i)+"*"*i) ** 知识点 ** 1、倒序输出 2、字符串拼接输出