Python Basics

Input and Coding Style

first_name = input("what is your first name? ");
print("Your first name ", first_name );

Order of operations

PEMDAS, or Please Excuse My Dear Aunt Sally

first it's any P which is parenthesis, then it's E for exponents, M for multiplication, then division, addition, subtraction