3
votes
Iterate over a string 2 (or n) characters at a time in Python
Maybe this would be cleaner?
s = "+c-R+D-e"
for i in xrange(0, len(s), 2):
op, code = s[i:i+2]
print op, code
You could perhaps write a generator to do wha …
