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"

I am lost as to what to do perform next.

It is stating that I didi not find the correct number of "Hi"s

printer.py
def printer(count): 
  print("Hi ")

2 Answers

Anish Walawalkar
Anish Walawalkar
8,534 Points

Hey Makan, you are almost there. The question asks you to create a function printer that takes a single integer argument which in your case is count and prints "Hi" count number of times.

In code it looks like this:

def printer(count):
    while count:
        print("Hi")
        count = count - 1

The printer function prints "Hi" until count becomes 0 at which point it exits the while loop and returns None

Hope that helps

Thank you for the clarification.