Name: Anonymous 2014-11-12 2:55
I need help with a For loop.
Using only For loops and a print function, let's say I wanted to print something like:
# # # # # #
Where the #'s and " "'s (spaces) are printed by a print function, one character at a time.
Notice how there's three spaces between the first and last sets of #'s?
How the heck can I get the For loops to only print three characters between the first and last #'s, but print six spaces for the inner ones?
Using only For loops and a print function, let's say I wanted to print something like:
# # # # # #
Where the #'s and " "'s (spaces) are printed by a print function, one character at a time.
Notice how there's three spaces between the first and last sets of #'s?
How the heck can I get the For loops to only print three characters between the first and last #'s, but print six spaces for the inner ones?