0
I need help with this
Input an number is (I) for example and get rectangle The length of it the ( I) and the weight is 3 and the rectangle is stars like this ***
2 Antworten
+ 5
Something like this?
width = 3
length = int(input('Enter length: '))
print()
for w in range(width):
for l in range(length):
print('*', end='')
print()
https://code.sololearn.com/cJCz9I58NmhZ/?ref=app
0
Thanks