show/hide this revision's text 2 added 37 characters in body; edited tags; edited title

Is there a Python equivalent of Perl's x operator?

In Perl, I can doreplicate strings with the 'x' operator:

$str = "x" x 5;

Can I do something similar in Python?

show/hide this revision's text 1

Python equivalent of Perl's x operator?

In Perl, I can do:

$str = "x" x 5;

Can I do something similar in Python?