大家好~ 有一題簡單的迴圈問題 但小的新手 想向大家求教 謝謝大家! make it draw a triangle shape like this: 111 11 1 The code is, (input() is provided by the question) n=int(input()) for i in range(0,n): X=0 for j in range(0,n): X=(X*10)+1 print(X) 我的code會變成: 111 111 111 但題目要 111 11 1 還請大家指導 感恩~~