在8分钟的时候,在init.py中,他纠正了config.add_renderer('.html', 'pyramid.mako_templating.renderer_factory'),但在那之后,File "/home/cloud/Code/python/3/moo/Moo/moo/__init__.py", line 10, in main
config.add_renderer('.html</
所以我有一个任务,要求我在Python中打印一个由星号组成的倒置金字塔。我知道如何打印出一个普通的金字塔,但我如何翻转它?金字塔的高度由用户的输入决定。这是我对普通金字塔的描述:p = int(input("Enter the height of the pyramid: "))
for x in range(p-i):
print(" ",end='')