- 1
How to make Square stars with python?
Using for loop
2 Answers
+ 2
I am assuming this is not homework, but out of interest.
Please show your attempt when asking such questions
num = 5
for i in range(num):
print('* ' * num)
+ 1
Thanks
Using for loop