Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialbennett miller
357 PointsPrint "hi" challenge from python basics how do i make the function repeat?
So i am supposed to make a function named printer that prints "hi ' how ever many times the "argument" count says but i don't even know where to start on that
count = 4
def printer():
print("{}".format(count))
printer()
1 Answer
Ish Tahir
9,316 Pointsthe count should be a parameter in your function, and if you multiply a string by a number, the string gets appended the value that many times
def printer(count):
print("Hi " * count)
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 Pointsmoved comment to answer