Is there a Python equivalent of Perl's x operator? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:20:37Z http://stackoverflow.com/feeds/question/497114 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/497114/is-there-a-python-equivalent-of-perls-x-operator 8 Is there a Python equivalent of Perl's x operator? Mat 2009-01-30T20:27:49Z 2009-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#497119 26 Answer by Dustin for Is there a Python equivalent of Perl's x operator? Dustin 2009-01-30T20:29:15Z 2009-01-30T20:29:15Z <pre><code>&gt;&gt;&gt; "blah" * 5 'blahblahblahblahblah' </code></pre>