# Lab_5_Exercise_1_Problem_2 # d) Can we generalise printFour() by creating a function # (we will need to rename it) that prints a string x times? def printString(theString): print(theString) return def printXTimes(theString, X): for time in range(X): printString(theString) return # Main printXTimes("Testing printXTimes( ) where X = 6.", 6)