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 trial

Python Python Basics (2015) Logic in Python Print "hi"

bennett miller
bennett miller
357 Points

Print "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

printer.py
count = 4
def printer():
    print("{}".format(count))
printer()

1 Answer

Ish Tahir
Ish Tahir
9,316 Points

the 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)