- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 Python 3.x 创建一个程序,其中包含随机生成的简单算术问题(例如 3 x 8)的测验。测验将由 3 个不同类(class)的学校学生(不是真实的学生!)进行,并且应存储每个学生的最新 3 个分数。每个类(class)的分数应单独保存(在 3 个文本文件中)。
学生完成测验后,学生该次尝试的分数应添加到他们的分数中。
我创建了以下代码,其中filename
是存储学生类(class)分数的文本文件的名称,score
是学生刚刚获得的分数, fullName
是学生的全名(他们在开始时输入的),scores
是存储用户类(class)分数的字典:
with open(filename, "a+") as file:
scores = ast.literal_eval(file.read())
#loads student's class' scores into dict
if fullName not in scores:
scores[fullName] = collections.deque(maxlen=3)
#adds key for student if they haven't played before
scores[fullName].append(score)
#adds student's new score to their scores
with open(filename, "w") as file:
file.write(str(scores))
#writes updated class scores to student's class' file
但是当我运行它时,我收到一个错误:
Traceback (most recent call last):
File "E:\My Documents\Quiz.py", line 175, in <module>
menu()
File "E:\My Documents\Quiz.py", line 142, in menu
scores = ast.literal_eval(file.read())
File "C:\Python34\lib\ast.py", line 46, in literal_eval
node_or_string = parse(node_or_string, mode='eval')
File "C:\Python34\lib\ast.py", line 35, in parse
return compile(source, filename, mode, PyCF_ONLY_AST)
File "<unknown>", line 0
^
SyntaxError: unexpected EOF while parsing
我认为这是因为文本文件是空的,所以当程序尝试读取它们时,它产生了错误。所以,我把它改成这样:
with open(filename, "a+") as file:
try:
scores = ast.literal_eval(file.read())
except SyntaxError:
scores = {}
#loads student's class' scores into dict, but if
#text file is empty, it creates empty dict by itself.
if fullName not in scores:
scores[fullName] = collections.deque(maxlen=3)
#adds key for student if they haven't played before
scores[fullName].append(score)
#adds student's new score to their scores
with open(filename, "w") as file:
file.write(str(scores))
#writes updated class scores to student's class' file
但是当我多次运行该程序时,无论是使用不同的名称还是使用相同的名称,都只会显示最新尝试的分数。我尝试将数据存储在文本文件中,然后在没有 try... except
语句的情况下运行程序,但仍然出现相同的 SyntaxError
。为什么会发生这种情况?请注意,我是初学者,所以我可能不明白很多事情。
最佳答案
您可以使用deque和pickle,但为了简单起见,我们将使用 json使用列表转储字典来保存值:
# Unless first run for class we should be able to load the dict.
try:
with open(filename, "r") as f:
scores = json.load(f)
except FileNotFoundError:
scores = {}
# game logic where you get score...
# try get users list of scores or create new list if it is their first go.
student_list = scores.get(fullName, [])
# if the user has three score remove the oldest and add the new.
# student_list[1:] takes all but the first/oldest score.
if len(student_list) == 3:
scores[fullName] = student_list[1:] + [score]
else:
# else < 3 so just append the new score.
student_list.append(score)
scores[fullName] = student_list
# dump dict to file.
with open(filename, "w") as f:
json.dump(scores, f)
关于python - 存储最新 3 个分数 - SyntaxError : unexpected EOF while parsing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36680047/
一旦在 qconsole Marklogic 中运行以下代码,我就会遇到以下错误 XDMP-UNEXPECTED: (err:XPST0003) Unexpected token syntax err
我已经在我的包中编写了这个函数。 def partitionIntoDays(ls, number, lookupKey=None): ''' Partitions the location
我只是一个 android 初学者,我已经安装了 Android Studio(版本是 1.0.2),并创建了一个新的空白应用程序,按照名为“构建你的第一个应用程序”的官方教程,我学习到这个页面' h
这只是前几天工作,但我刚刚将我的代码更新到运行乘客 2.2.4 的审查服务器,而我的 2.3.4 rails 应用程序现在无法在那个盒子上启动。 乘客报告: Passenger encountered
我正在尝试使用带有 Angular 2的整页, 将其导入我的 app.module.ts 时出现以下错误。 "(SystemJS) Unexpected token ) at Obje
TFS2015 vNext 构建失败并出现记录器错误(下面附有错误消息)。根据我的调查,这看起来与 CentralLogger - "Microsoft.TeamFoundation.Distribu
计算机科学学校项目。我需要编写一个程序,其中用户声明数组的大小,然后以数字、非递减顺序填充数组,然后声明一个值 x。然后将 X 分配到适当的位置,以便整个数组按数字、非递减顺序排列。然后输出该数组。
在这 2 个方法中,inspect1 显示编译错误“Unexpected bound”而 inspect2 工作正常,为什么? public void inspect1(List u){ S
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我正在尝试运行以下代码,但遇到了“此时意外”错误。 (echo COPY (SELECT ta.colA as name, ta.colB as user_e, ta.colC as user_n,
我有以下查询: select u.UserName, count(*) as total from Voting v join User u using (UserID) where unique (
我们有以下查询在 MSSQL 中完美运行但在 MySQL 中无法运行: select CONVERT(datetime, dateVal) as DateOccurred, itemID, COUNT
我的代码中存在缩进错误问题。它看起来是正确的...有人能指出我做错了什么吗?我的查询行不断收到错误。 def invoice_details(myDeliveryID): conn = pym
我有以下代码: int a , b , sum; cin>>a>>b; sum=a+b; cout>a>>b>>c; cout<
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我在一个批处理文件上运行这个命令: for %I in (*.txt *.doc) do copy %I c:\test2 ...它不断返回: I was unexpected at this tim
创建查询时出现错误: 'from' unexpected 我的代码如下: @Override public Admin findByAdmin(Admin admin) {
我正在尝试运行此 python 代码,但我不断收到错误消息“意外缩进”。我不确定怎么了。间距似乎很好。有什么想法吗? services = ['Service1'] for service in
我在名为“circular_dependency”的目录中有一些 python 文件: 导入文件_1.py: from circular_dependency.import_file_2 import
我正在尝试使用 gcc 编译代码并运行可执行文件,但它抛出错误: gcc somefile.c -o somefile 编译成功。但是,当我尝试执行它时: $sh somefile 它导致:语法错误:
我是一名优秀的程序员,十分优秀!