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"

Siddharth Chavan
Siddharth Chavan
2,426 Points

What is wrong with this?!

Please help. Look at the code and tell me what's wrong.

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

2 Answers

Brendan Whiting
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Brendan Whiting
Front End Web Development Techdegree Graduate 84,736 Points
  • You need a colon at the end of the first line when you define your function
  • You need call the print function with parentheses. The old version of Python let you just use print without parentheses but newer version requires them.
def printer(count):
    print("Hi " * count)
Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! The definition of your function is missing a colon after the parameters. The indentation is incorrect on the second line. And the print function needs parentheses around the arguments. Take a look at another example:

def printMe(myString):  #note the colon here
    print(myString)          #note the parentheses here

Hope this helps! :sparkles: