# Arup Guha
# 10/15/2020
# Unit Test of the copy guy!

# Pre-condition: text is a string, numcopies is a positive integer, and
#                endingStr is a string.
# Post-condition: The text will be printed numcopies # of times followed
#               by the endingStr each time.
def makeCopies(text, numcopies, endingStr):

    # Loop for each copy.
    for i in range(numcopies):

        # Print text followed by the ending string.
        print(text, end=endingStr)

# My testing function
def main():

    makeCopies("alphabet", 15, " ")
    makeCopies("*GHRRH#q\n", 3, "\n")
    makeCopies("!", 70, "")

#main()
