- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用空闲 Python 3.4.3。这是一个脚本,给用户一个小测验,然后计算有多少人答对了。在我的脚本运行之前,我在注释中遇到无效语法错误。这是评论周围的整个代码。具体注释在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"""
我运行它,遇到无效语法错误,然后它以红色突出显示单词 score
中的 s 和 c。使用 ' 在这方面没有区别。但是,当我像这样运行代码时:
"""
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 %
"""
它仍然给出语法错误,但这次只将 score
中的 s 高亮显示为红色。由 unutbu 要求添加的 repr:
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"""
评论有错误吗?
最佳答案
#
用于表示 comment 的开始.三重引号用于指示 multiline strings 的开始和结束.虽然字符串不是注释,但有时 multiline strings can be used as multiline comments .
不过,字符串的放置还是要遵守Python syntax rules .
score = amountright/7*100 """this takes the amount..."""
引发 SyntaxError,因为字符串后面的表达式不是字符串。 amountright/7*100 """这个取金额..."""
大致相当于
>>> 1 "foo"
SyntaxError: invalid syntax
Python 不知道如何计算后跟字符串的数字。即使可以评估,该值也将是 assigned to 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 = 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
在每一行前面放一个 #
可能看起来很痛苦,但这是一个很好的文本用于 Python 编程的编辑器应该有一种方法让你选择文本区域和按一个按钮或组合键为您插入 #
符号。如果你的编辑器没有这个功能,find one thatdoes .
关于注释中的python无效语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33283163/
在此处回答的另一个问题中,我发现了以下 JavaScript代码: function _dom_trackActiveElement(evt) { if (evt && evt.target)
if (A == 0) OR (B == 0) 怎么说? 最佳答案 只是为了讽刺: if (A === 0 || B === 0) 关于语法,我们在Stack Overflow上找到一个类似的问题:
var ret = [] ,xresult = document.evaluate(exp, rootEl, null, X
我一直在寻找一些类似于下例的 JavaScript。有人可以解释一下吗,因为我以前从未见过这样编写的 JavaScript。 “SomethingHere”和冒号代表什么?我习惯于看到函数 myFun
这是我的程序: delimiter // drop procedure if exists migContactToActor; create procedure migContactToActor(
我遇到了一个问题。我一直在使用 gcc 编译/汇编我的 C 代码一段时间,并且习惯了阅读 Intel 汇编语法。我在生成程序集文件时使用了 -masm=intel 标志。 但是最近因为公司迁移,拿到了
自上而下和自下而上语法有什么区别?举个例子就太好了。 最佳答案 首先,语法本身不是自上而下或自下而上的,解析器是(尽管有些语法可以被其中一个解析,但不能被另一个解析)。 从实践的角度来看,主要区别在于
我知道这是草率的代码,但它是: display dialog ("Start Screensaver. Please type: matrix, coffee, waffles, star, wate
这个问题已经有答案了: Giving name to a loop (6 个回答) 已关闭 8 年前。 我见过这个字符在 C# 中使用,就像 Java 中的扩展一样,但最近我在代码中发现了这个 loo
我正在尝试编写一个函数来检查字符串是否为回文,但我认为在使用字符串指针时存在一些错误。这段代码有什么问题? #include #include #define MAX 1000 int IsPalin
所以在this question我询问了一些 Javascript 是如何被压缩的。问题已得到解答,但以下片段让我非常困惑,以至于我不得不问另一个问题。在这里: for (Y = 0; $ = 'zx
假设我有一个接受这些参数的函数。 int create(Ptr * p,void * (*insert)(void *, void *)) { //return something later } 结
这个问题已经有答案了: Bitwise '&' operator (6 个回答) 已关闭 5 年前。 我在代码中找到了这个,但我从未遇到过像 & 这样的事情,仅 && if ((code & 1) =
我在处理继承类及其中的构造函数和方法的语法时遇到了问题。 我想实现一个类日期和一个子类 date_ISO,它们将按特定顺序设置给定的日、月、年,并通过一种方法将其写入字符串。我觉得我的基类日期工作正常
我正在尝试通过存储过程填充表,如下所示: SET @resultsCount = (SELECT COUNT(*) FROM tableA); SET @i = 0; WHILE @i THEN
谁能解释一下下面代码中的“<<”? mysql test<
刚刚开始学习 MySQL,这是一个菜鸟问题,也是我在 StackOverflow 上的第一个问题。 假设我有 12 个订单状态,我想从其中的 5 个中选择总计。我会使用: SELECT SUM(tot
我的编程背景是在学校学过一点Java。由于某些原因,JavaScript 语法往往让我感到困惑。下面的 JavaScript 代码是一种我不知道如何构成的语法模式: foo.ready = funct
我正在阅读 javascript 源代码,并且我以前没有编写过 javascript。我对它的一些语法感到困惑。 $(function () { window.onload=function
我什至不知道如何命名我想要的东西。那么让我举个例子来解释一下。 虽然火狐使用textContent,但其他浏览器支持innerText属性。顺便说一句,如果我使用了错误的术语,请纠正我。无论如何,到目
我是一名优秀的程序员,十分优秀!