Posts by Heriton Arantes • 11 points
1 post
-
1
votes5
answers5611
viewsA: Draw square on the canvas using wire fences (#)
I did so: def retangulo (larg,alt): carac = "#" for _ in range(alt): print(larg*carac) larg = int(input("digite a largura: ")) alt = int(input("digite a altura: ")) retangulo(larg,alt)…
pythonanswered Heriton Arantes 11