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"

Austin Parisi
Austin Parisi
3,952 Points

print "Hi " as many times as count

somebody please explain the next step

printer.py
def printer(count):

1 Answer

The challenge wants you to print the message "Hi " as many time as times says.

Keep in mind that there shouldn't be newlines/carriage returns at the end of each "Hi"!

Examples of calling the function:

>>> printer(3)
Hi Hi Hi 
>>> printer(1)
Hi 
>>> printer(5)
Hi Hi Hi Hi Hi 

Here's a hint to solve this: You can use the multiplication operator to repeat a string multiple times.

Examples:

>>> "a" * 3
"aaa"
>>> "Hi " * 10
"Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi "

I hope this helps :grin:

~Alex

If this answered your question, please provide a best answer. Thanks!