-
Data Structures
-
Iteration
-
Mathematics
-
Files
-
Programming On A Machine
-
Exercises
Iterating over strings
Python considers a string as a sequence of characters.
This means we can use the for
instruction to process every character in a string.
This is a crucial concept for a lot of programming exercises, as we can make decisions based on the value of the letter.
The following code skips some vowels: