<- Back to Chapter 6.
Write code that will print ten astrisks (*) like the following:
* * * * * * * * * *
for row in range(10): print("*",end=" ")
Video: Answer to Problem 1