Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python invalid syntax in comment

Using IDLE Python 3.4.3. This is a script that gives the user a small quiz, then calculates how many the got right. I'm having an invalid syntax error in a comment before my script runs. Here is the whole code around the comment. The specific comment is under the line score = decimal.Decimal(score):

score = amountright/7*100 """this takes the amount of questions the user got right, divides it by 7 (the total number of questions), then multiplies it by 100 to get a percentage correct and stores it in the variable score"""
import decimal """this will import a function to round off the final percentage to a whole number instead of an unnecessarily long decimal"""
score = decimal.Decimal(score)
"""this redefines the score variable as some sort of roundable decimal. the round() function in the line below will still function without this line, but it would print an unneeded .0 before the %"""
print ("You got " + str(amountright) + " out of 7 right, or " + str(round(score,0)) + "%.")
"""the round() function works by rounding the first argument to n places in the second argument"""

I run this, get the invalid syntax error, then it highlights the s and c in the word score red. using ' makes no difference in this. However, when I run the code like this:

"""
This redefines the score variable as some sort of roundable decimal. the round() function in the line
below will still function without this line, but it would print an unneeded .0 before the %
"""

It still gives a syntax error, but this time only highlights the s in score red. repr added by unutbu's request:

print ("Here is a quiz!\n") #starting prompt

useranswer = input("Question 1: What is 4+|6x1|? ")
#this is where the user enters their answer to the question

#the following 2 variables on lines 7 and 9 only need to be defined once
rightanswerresult = "Correct! Next question:\n" #tells the user they are correct
invalidanswerresult = "This is not a number. This is counted as a wrong answer.\n"
"""if the user does not answer with a number, this string will print telling them so and the question will
be counted wrong"""

amountright = 0 #this number increases every time the user answers a question correctly

if useranswer.isdigit(): #if the user's answer is a number, the code below runs
    if useranswer == "10":
    #this checks if the user's answer and the correct answer are the same, then runs the code below if they are"""
        print (rightanswerresult) #this prints the variable rightanswerresult described on line 7
        amountright += 1 #this will add the value one to the variable amountright described on line 13
    else: #if the user's answer and the correct answer are not the same, the code below runs
        print ("Wrong, it was 10. Next question:\n") #tells the user they were wrong
else: #if the user's answer is NOT a number, this runs
    print (invalidanswerresult) #this prints the varible invalidanswerresult described in line 9
#this pattern is repeated 5 more times. an altered process is used for the True/False question (#7)
useranswer = input("Question 2: What is (15/3) x 12? ")
if useranswer.isdigit():
    if useranswer == "60":
        print (rightanswerresult)
        amountright += 1
    else:
        print ("Wrong, it was 60. Next question:\n")
else:
    print (invalidanswerresult)

useranswer = input("Question 3: What is 20+24/12? ")
if useranswer.isdigit():
    if useranswer == "22":
        print (rightanswerresult)
        amountright += 1
    else:
        print ("Wrong, it was 22. Next question:\n")
else:
    print (invalidanswerresult)

useranswer = input("Question 4: Solve for x: 2x-1=5 ")
if useranswer.isdigit():
    if useranswer == "3":
        print (rightanswerresult)
        amountright += 1
    else:
        print ("Wrong, it was 3. Next question:\n")
else:
    print (invalidanswerresult)

useranswer = input("Question 5: What is the square root of 256? ")
if useranswer.isdigit():
    if useranswer == "16":
        print (rightanswerresult)
        amountright += 1
    else:
        print ("Wrong, it was 16. Next question:\n")
else:
    print (invalidanswerresult)

useranswer = input("Question 6: What is 7x7+7/7-7? ")
if useranswer.isdigit():
    if useranswer == "1":
        print (rightanswerresult)
        amountright += 1
    else:
        print ("Wrong, it was 1. Next question:\n")
else:
    print (invalidanswerresult)
#the question below appears different because it is True/False and the last question
useranswer = input("Question 7: True or False: |3|=98/2 ").lower() #as before, the user is asked a question
if useranswer == "false": #checks if user's answer is false, and runs code below if it is
    print ("You're right! Your results are below:\n") #this tells the user they are correct then shows them their final score
    amountright += 1 #as before, this will add the value one to the variable amountright described on line 8
if useranswer == "true": #checks if user's answer is true, and runs code below if it is
    print ("Actually, its false. Your results are below:\n") #this tells the user they are wrong then shows them their final score
elif useranswer != "false" and useranswer != "true": #if the user's answer is not true or false, this code runs
    print ("It seem you didn't enter true or false. Maybe you made a spelling error? Anyways, your results are below:\n")
    """tells user their answer is invalid then shows final score"""
#all questions have been completed. below is the final score calculation
score = amountright/7*100 """this takes the amount of questions the user got right, divides it by 7
(the total number of questions), then multiplies it by 100 to get a percentage correct and stores
it in the variable score"""
import decimal """this will import a function to round off the final percentage to a whole number
instead of an unnecessarily long decimal"""
score = decimal.Decimal(score)
"""this redefines the score variable as some sort of roundable decimal. the round() function in the line
below will still function without this line, but it would print an unneeded .0 before the %"""
print ("You got " + str(amountright) + " out of 7 right, or " + str(round(score,0)) + "%.")
"""the round() function works by rounding the first argument to n places in the second argument"""

Is there an error with the comment?

like image 609
dioretsa Avatar asked Oct 22 '15 14:10

dioretsa


2 Answers

# is used to indicate the start of a comment. Triple quotes are used to indicate the start and end of multiline strings. Although strings are not comments, sometimes multiline strings can be used as multiline comments.

However, the placement of the string still has to abide by Python syntax rules.

score = amountright/7*100 """this takes the amount..."""

raises a SyntaxError because the string follows an expression which is not a string. amountright/7*100 """this takes the amount...""" is roughly equivalent to

>>> 1 "foo"
SyntaxError: invalid syntax

Python does not know how to evaluate a number followed by a string. Even if it could be evaluated, the value would be assigned to score. The multiline string would not be interpreted as a comment. For the multiline string to act as a comment it must be on a line by itself:

score = amountright/7*100 
"""this takes the amount of questions the user got right, divides it by 7
(the total number of questions), then multiplies it by 100 to get a percentage correct and stores it in the variable score"""

import decimal 
"""this will import a function to round off the final percentage to a whole number
instead of an unnecessarily long decimal"""

or, use the more commonly used comment syntax:

score = amountright/7*100 
# this takes the amount of questions the user got right, divides it by 7 (the
# total number of questions), then multiplies it by 100 to get a percentage
# correct and stores it in the variable score

Putting a # in front of every line might seem like a pain, but a good text editor for programming in Python should have a way for you to select a region of text and press a button or key combination to insert the # signs for you. If your editor does not have this feature, find one that does.

like image 150
unutbu Avatar answered Sep 22 '22 19:09

unutbu


I had a similar problem: Sometimes IDLE points you in the wrong direction and says "invalid syntax" when there is a wrong character at the wrong place, e.g.

print(f"value of counter = {counter}")

works well let's say in line 50, but

print(f"value of counter = {counter]}")

produces the message "invalid syntax" pointing to a irrelevant comment in line 1

It took me some time to find the typo "]" in the formatted string. So always check your braces!

like image 24
PythonRocks Avatar answered Sep 19 '22 19:09

PythonRocks