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"

DeNon Maryland
DeNon Maryland
1,174 Points

Just can't seem to figure out what to do here.

I am stuck on where I am going wrong in the code, any suggestions?

printer.py
def printer(count):
    return(count) * 1
if count == count
        print("Hi")

1 Answer

Antonio De Rose
Antonio De Rose
20,884 Points
def printer(count):
    return(count) * 1 #the question have not asked you to return anything, and the question have asked you to multiply by #count and not 1, take this line off
if count == count #question did not ask you to check for if condition, take this line off
        print("Hi") #you have to multiply, this statement by count