Unit 8 · Lesson 1
Build the idea
Start with the concept and its key vocabulary.
Concatenation joins strings with + and does not add spaces automatically. ERL uses text.length, text.upper and text.lower. Python uses len(text), text.upper() and text.lower(). Cast a number with str() before joining it to text.
Performing operations on strings, such as joining, measuring or changing case.
Joining two or more strings using the + operator.
The number of characters contained in a string.
Changing letters to uppercase or lowercase without changing the original wording.