In C++, I could do:
for(int i = 0; i < str.length(); ++i)
std::cout << str[i] << std::endl;
How do I iterate over a string in Python?
|
|
As Johannes pointed out,
You can iterate pretty much anything in python using the for example,
If that seems like magic, well it kinda is, but the idea behind it is really simple. There's a simple iterator protocol that can be applied to any kind of object to make the Simply implement an iterator that defines a |
|||||
|
|
Even easier:
|
||||
|
If you need access to the index as you iterate through the string, use
|
|||
|
|
|
Just to make a more comprehensive answer, the C way of iterating over a string can apply in Python, if you really wanna force a square peg into a round hole.
But then again, why do that when strings are inherently iterable?
|
|||||||||
|
|
Strings are just "sequences" in python and, as such, can be iterated in loops, as Johannes pointed out. |
|||
|
|