I'm trying to use triple quotes to designate a large comment, but I'm getting a new error that says
SyntaxError: invalid string (possibly contains a unicode character) on line 2
Here's the code.
"""
Write a program that asks the user how many names they have.
(If they have a first name, two middle names, and a last
name, for example, they would type 4.) Then, using a for
loop, ask the user for each of their names. Finally, print
their full name.
"""
The triple quotes that I'm having a problem with are the ones at the top.
With that information out of the way, my question is "Are triple quotation marks unicode characters according to python?"
If this is a repeat post, feel free to move it.