Lesson 1 step 2 Report Card problem

  1. In printing a variable, make sure the variable name outline does NOT ’ (Apostrophe)

    for example

    name = 'Alice'
    print(name)
    # Alice
    

NOT


name = 'Alice'
print('name')
Syntas error

Because having a apostrophe makes the code confuse (Making it think it’s both a variable name and a string itself thus giving a syntax error)

that is not a thing it happens

print('name') is just going to print the string name, it’s not a syntax error