vote up 8 vote down star

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

$str = "x" x 5;

Can I do something similar in Python?

flag

68% accept rate

1 Answer

vote up 26 vote down check
>>> "blah" * 5
'blahblahblahblahblah'
link|flag
1  
Why not 5*"RTFM"? – S.Lott Jan 30 at 22:48
@S.Lott: So right. SO is quickly becoming the lazy programmer's alternative to reading any documentation. – davidavr Jan 31 at 2:45
I agree, but I don't see the harm in that. (I had to chuckle when I saw S.Lott's example!) – j_random_hacker Feb 1 at 13:16
"Dumb programming questions, answered by dumb programmers." A Google search for 'python equivalent perl x' now finds this page followed by Dustin's friendfeed, then nothing. I couldn't find the right search terms for the documentation. – Mat Feb 1 at 14:45
I've also noted that I get more reputation points from asking dumb questions, than from complicated ones that require a bit of thought. I guess its just a flaw in the reputation system. – Mat Feb 1 at 14:46
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.