Python中倒三角可以使用for循环来实现:for i in range(6): print("") for j in range(0,6-i): print("*",end=" ") print("\n") 更多Python相关技术文章,请访问Python教程栏目进行学习!