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?