0
這裏是我的代碼遞歸工作在Python 3.X
def printTriangleRecursive(width):
# Recursive implementation
if width > 1:
printTriangleRecursive(width - 1)
print ("*" * width, end=" ")
上午想獲得這個使用遞歸
*
* *
* * *
* * * *
* * * * *
,但我得到一個不同的員工