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 trialMairead Redmond
1,446 PointsNot sure what the issue with my code is, it seems correct but isn't passing.
Not sure why it is not working.
def printer(int(count)):
for count >= 0:
print("Hi")
count -= 1
printer(5)
1 Answer
Niko Klanecek
3,152 PointsA for
loop does not work in this way, if you wanted that code to run you would need to replace for
with while
. That code would print out Hi
5 times on 5 separate lines.
However, the challenge wants you to print all the Hi
s in a row. So the code is very simple:
def printer(count):
print('Hi' * count)
This will print HiHiHiHiHi