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 ***

5th Sep 2017, 4:30 PM
Abd Allah Abd Alkader
Abd Allah Abd Alkader - avatar
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
5th Sep 2017, 7:25 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
0
Thanks
6th Sep 2017, 5:18 AM
Abd Allah Abd Alkader
Abd Allah Abd Alkader - avatar