In this video, we’ll talk more about strings and explain the for loop. A string is a data type created when we use a pair of quotation marks.
1 |
username = "microwavesam" |
is an example of a string. Let’s say that I wanted to get the “m” character in “microwavesam”. A character is the term used for a single symbol in Python. In Python and programming languages, we also use the term, element. An element is a term for any individual part of...