Is there a Python equivalent of Perl's x operator? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:20:37Zhttp://stackoverflow.com/feeds/question/497114http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/497114/is-there-a-python-equivalent-of-perls-x-operator8Is there a Python equivalent of Perl's x operator?Mat2009-01-30T20:27:49Z2009-02-15T09:07:25Z
<p>In Perl, I can replicate strings with the 'x' operator:</p>
<pre><code>$str = "x" x 5;
</code></pre>
<p>Can I do something similar in Python?</p>
http://stackoverflow.com/questions/497114/is-there-a-python-equivalent-of-perls-x-operator/497119#49711926Answer by Dustin for Is there a Python equivalent of Perl's x operator?Dustin2009-01-30T20:29:15Z2009-01-30T20:29:15Z<pre><code>>>> "blah" * 5
'blahblahblahblahblah'
</code></pre>