-
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)