2777
Comments (508)
sorted by:
You're viewing a single comment thread. View all comments, or full comment thread.
13
ZacPetkanas 13 points ago +13 / -0

I find it hard, so I wrote a program to do it for me. lol!

6
Seadgs 6 points ago +6 / -0

My Man

4
booblitchutz 4 points ago +4 / -0
from random import random
t = “my stupid text”    
“”.join([x.upper() if random() > .5 else x.lower() for x in t]
2
ZacPetkanas 2 points ago +2 / -0

This guy codes.

But actually, I have it just do eVeRy OtHeR lEtTeR which you could probably code even easier with a modulo operator.

2
booblitchutz 2 points ago +2 / -0

Had to edit because I didn’t test my code snippet.. now you KNOW I code

1
basedtexapede 1 point ago +1 / -0

It is tricky, because you want all of your "i"s to be lowercase and "L"s to be uppercase to avoid confusion.