Tagged Questions

8
votes
1answer
419 views

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

In Perl, I can replicate strings with the 'x' operator: $str = "x" x 5; Can I do something similar in Python?