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 trialGreg Ryan
1,777 PointsPython Basics: Write a function named print and print "Hi" multiplied by the number that is input.
"Write a function named printer. The function should take a single argument, count, and should print "Hi " as many times as the count argument. Remember, you can multiply a string by an integer."
I am really lost with what I am meant to do here. I have looked back over the older videos but can't seem to work it out.
def printer(count):
if count == num
int(print("hi" * num))
2 Answers
Ricardo Sierra
14,920 PointsYou should do: def printer(count): print("Hi" * count)
In your code, you are checking if count is equal to num. And num has not been defined.
Greg Ryan
1,777 PointsThanks Ricardo! I was making it too hard. Now I just need to work out the next problem!
Greg.