Python中倒三角形可以使用for迴圈來實現:for i in range(6): print("") for j in range(0,6-i): print("*",end=" ") print("\n") 更多Python相關技術文章,請造訪Python教學欄位進行學習!