Hey, i need to make app that should take 10 chars from list. I tried it with range command but it's not working.
list = 'abcdefghijklmnopqrstuvxyzo'
for list in range(10):
print list
And this code just prints numbers 0 to 10.
So, is there some other command that would do same as range(i mean printing 10 chars from the list)?