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"

Trevor Wood
Trevor Wood
17,828 Points

Understanding this python question

I just had this problem where it asked me to multiple a string? I thought that Integers and strings could not use mathematical equations? Is this the only one?

def printer(counter): print(counter*"hi")

printer.py
def printer(counter):
  print(counter*"hi")

1 Answer

Yes, this seems to be unique to Python, as far as I know. Multiplying a string by an integer will create a new string, in which the first string is repeated the number of times of the integer's value.

I imagine it comes in handy for printing horizontal lines on a report: print(60 * "_")