#------------------------------------------------------------------------------ # Loop6.py # Prints out a bunch of *'s #------------------------------------------------------------------------------ n = int(input("Enter the number of *'s to print: ")) for i in range(n): print('* ', end='') if i%10==9: print() # end if # end for