For loops, part 2

One thing that we had to do repeatedly was print a bunch of stars, so we could write a . printStars. function. The only thing it needs to know is the number of stars to print. def drawStars(count): Write the body. We also needed to print a bunch of blanks. def printBlanks(count): Write the body. Note how similar both functions are! ................
................