I want to randomise the case of a string, heres what I have:

word="This is a MixeD cAse stRing"
word_cap=''
for x in word:
        if random.randint(0,1):
                word_cap += x.upper()
        else:
                word_cap += x.lower()
        word = word_cap

print word

Im wondering if you could use list comprehension to make it faster. I couldnt seem to use the lower() and upper() functions in randomchoice i tried to do something like

''.join(randomchoice(x.upper(),x.lower()) for x in word)

but i think thats wrong. something like that though is possible?

link|improve this question
feedback

2 Answers

up vote 7 down vote accepted
import random
s = 'this is a lower case string'

''.join(random.choice((str.upper,str.lower))(x) for x in s)

random.choice randomly selects one from two functions str.upper, str.lower.

Then this function is applied to x for each letter in the input string s.

If initial string has all the letters in lowercase, that I would use this code:

''.join(x.upper() if random.randint(0,1) else x for x in s)

because the initial code would use redundant str.lowercase on half of the letters in the case of lowercase initial string.

By the way, look at the other answer by Michael J. Barber. Python have hefty charges for function calls. In his code he calls str.upper only once. In my code str.upper is called for about half the symbols of the initial string. So still a temporary upper-cased string is created in memory, the time efficiency of his code may be much greater.


Lo and behold:

Code timing comparisons: https://ideone.com/eLygn

link|improve this answer
2  
Why call str.lower() on a string that already is lowercase? – Tim Pietzcker Dec 1 '11 at 16:47
it could be in any case. thanks guys! – user1064306 Dec 1 '11 at 16:49
1  
@TimPietzcker because initial string may have letters in upper case – ovgolovin Dec 1 '11 at 16:49
perfect, just what i wanted. thanks again. – user1064306 Dec 1 '11 at 16:54
@colonwq: I'm betting that this is far from the fastest method. Michael's solution (modified to handle mixed-case strings, which were not part of your question) will certainly be faster, especially with longer strings. I'm not at my home PC right now, so I can't test it, though. – Tim Pietzcker Dec 1 '11 at 16:57
show 5 more comments
feedback

Try this:

word="this is a lower case string"
caps = word.upper()
''.join(x[random.randint(0,1)] for x in zip(word, caps))

This should outperform your version because it makes many fewer calls to upper and because, more importantly, it avoids the O(N^2) successive appends you used in the version with the loops.

With the modification to the question, you'll need to create both the lowercase and uppercase versions:

word="This is a MixeD cAse stRing"
caps = word.upper()
lowers = word.lower()
''.join(random.choice(x) for x in zip(caps, lowers))

As suggested by Tim Pietzcker in the comments, I've used random.choice to select the letters from the tuples created by the zip call.

Since the question has been changed to focus more on speed, the fastest approach is likely to be using Numpy:

''.join(numpy.where(numpy.random.randint(2, size=len(caps)), list(caps), list(lowers)))
link|improve this answer
3  
+1, but random.choice(x) for x in zip(...) would look nicer IMO. – Tim Pietzcker Dec 1 '11 at 16:49
yeh i didnt mention mixed case, sorry. this looks faster, thanks. updated my question. – user1064306 Dec 1 '11 at 17:07
I added timing comparisons to the answer. @TimPietzcker – ovgolovin Dec 1 '11 at 17:16
Using random.choice(x) instead of x[random.randint(0,1)] makes the code 2 times faster. Why is that? – ovgolovin Dec 1 '11 at 17:43
@TimPietzcker Yes, I suppose it would look nicer. I'll add it, and update for the mixed case possibility. – Michael J. Barber Dec 1 '11 at 17:46
show 5 more comments
feedback

Your Answer

 
or
required, but never shown