Extend
print ( ) is used to output text
input( ) is used to get the user to type something
Variables store values that can change.
String manipulation help:
https://www.w3schools.com/python/python_strings_modify.asp
length of a string: len ( )
splicing a string: variable [ number ]
capitalise: variable.capitalise()
uppercase: variable.upper()
lowercase: variable.lower()
string to integer: int( number here )
integer to string: str( number here )