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 trialvictor E
19,146 PointsMay I please see an example for this one? Thank you guys!!!
just 1 or 2 examples would be great, I don't want the actual answer. Also, any links that you might know of with exercises that can help me practice multiple challenges or can be helpful.
Thanks!
def printer():
1 Answer
Abdishakur Hassan
3,585 PointsHi. You could write it like this:
def printer(count):
print ('hi ' * count)
printer(2)
This will print 'hi' two times and you can pass any number in count and get printed hi that number of times.
Hope this helps
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsThe
print
function requires parentheses. This course isn't on Python 2.Abdishakur Hassan
3,585 PointsAbdishakur Hassan
3,585 PointsYou are right Alexander. I only have python 3 as well but thought this course was on python 2. my memory failed me.