Name: Anonymous 2009-08-10 23:24
When people use _ as a loop variable like it's not going to be used, but they use it anyways.
Seriously. That's what using _ is for, a dummy variable you won't use, asshats.
for i,_ in enumerate(raw_input('>')):
print i,ord(_)Seriously. That's what using _ is for, a dummy variable you won't use, asshats.