In Perl, I can doreplicate strings with the 'x' operator:
$str = "x" x 5;
Can I do something similar in Python?
|
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:
Can I do something similar in Python?
|
||||
|
1 |
|
||