Odpowiedź:
user_input = int(input("How many row would you like to draw: "))
for row in range(user_input,0,-1):
for col in range(1,row+1):
print (col,end=" ")
print()
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
user_input = int(input("How many row would you like to draw: "))
for row in range(user_input,0,-1):
for col in range(1,row+1):
print (col,end=" ")
print()
Wyjaśnienie: