- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试运行一个程序,该程序基于文本文件的内容管理测验。我的代码如下所示:
该程序管理有关美国各州,首都和州长的测验
全局有多少个问题
HOW_MANY_QUESTIONS = 10
打开带有答案的文件
answer_file = open('quiz_answers.txt','r')
打开文件以在末尾添加结果
results_file = open('quiz_results.txt','w')
def main():
#dictionary with quiz answers
answer_dictionary={}
#run create dictionary function, result is the answer dictionary
answer_dictionary=create_dictionary(answers_file)
#close the files
answers_file.close()
results_file.close()
go_again='yes'
while go_again=='yes':
#get name
name=input('Enter your name: ')
#initialize count variable
count=0
#accumulator for number of correct answers
number_correct=0
for count in range(0,HOW_MANY_QUESTIONS+1):
#pick question function
answer=pick_question(answer_dictionary)
if answer:
number_correct+=1
results_file.write(name,number_correct)
go_again=input('Go again? ')
#establish a dictionary
dictionary={}
#initialize a key
key=0
#read the first line that is a state
state=infile.readline()
#strip the new line
state=state.rstrip('\n')
#while the line is not blank
while state!='':
#add it as the dictionary key
key=state
#read the capital line
capital=infile.readline()
#strip new line
capital=capital.rstrip('\n')
#read the govenror line
governor=infile.readline()
governor=governor.rstrip('\n')
#assign a list with capital and governor to the state key
dictionary[key]=[capital,governor]
return dictionary
#make a list containing the keys
keys=[]
#isolate the keys and append to the key list
for key in dictionary.keys():
keys.append(key)
#import random
import random
#initialize an index for keys list
key_index=0
#randomly select the state to ask about
state_selection=random.randint(0,len(keys)-1)
key_index=state_selection
#assign value to capital and governor to randomly
#select which question to ask
capital=1
governor=2
#randomly select whether to ask for the governor or the capital
question_choice=random.randint(capital,governor)
#if the question choice is for capital
if question_choice==capital:
#ask the capital question
question=input('What is the capital of',keys[key_index],'? ')
#if the answer is a value for that key
if question in keys[key_index]:
#it is correct
answer=True
#if the question choice is for governor
elif question_choice==governor:
#ask the governor question
question=input('Who is the governor of',keys[key_index],'?')
#if the answer is a value for that key
if question in keys[key_index]:
#it is correct
answer=True
return answer
最佳答案
无论您在何处打开infile,都需要使用正确的编码将其打开。具体操作方法:
关于python - UnicodeDecodeError : 'ascii' codec can't decode byte 0xff in position 36: ordinal not in range(128),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47562685/
我有一个文本文件,发布者(美国证券交易委员会)声称该文件以 UTF-8 编码(https://www.sec.gov/files/aqfs.pdf,第 4 节)。我正在使用以下代码处理这些行: def
在 django 界面中添加元素时遇到问题。我有两个定义: # -*- coding: utf-8 -*- class VisitType(models.Model): name=models
我尝试制作一个脚本来使用 Mechanize 发布表单 剧本: # Browser br = mechanize.Browser() cj = cookielib.LWPCookieJar() br.
我收到此错误: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe0 in position 4: ordinal not in range
我正在尝试使用 Google 语音 API 在 Python 中制作语音识别器。我一直在使用和改编 here 中的代码(转换为Python3)。我在计算机上使用一个音频文件,该文件已使用在线转换器从
打开一个docker实例(例如docker run -ti ubuntu:16.04),创建Python文件a.py # -*- coding: utf-8 -*- a = 'ö' 和r.py wit
当我将应用程序与Buildozer for Android打包在一起时,我会收到UnicodeDecodeError。 Log2与Buildozer一起附加 build.py 。 作业系统:UBUNT
我在 Ubuntu 终端(编码设置为 utf-8)中运行此代码段两次,一次使用 ./test.py然后用 ./test.py >out.txt : uni = u"\u001A\u0BC3\u1451
我正在尝试使用 Python 中的以下命令序列替换 Word 文件中的子字符串。代码本身工作得很好 - 即使使用完全相同的 Word 文件,但当将其嵌入到更大规模的项目结构中时,它会在确切的位置抛出错
我在 tox 中有以下配置: [tox] envlist = py37 [testenv] passenv = TRAVIS TRAVIS_* setenv = DEFAULT_FROM =
我正在获取 UnicodeDecodeError: 'ascii' codec can't decode byte 0xb0 in position 104: ordinal not in range
在执行子字符串匹配时,我收到 UnicodeDecodeError: 'ascii' codec can't Decode byte 0xc3 inposition 8: ordinal not in
我正在使用 Python 和 lxml,但遇到错误 我的代码 >>>import urllib >>>from lxml import html >>>response = urllib.urlope
我是 python 的新手,我正在尝试处理一小部分 Yelp!数据集是 JSON,但我使用 pandas 库和 NLTK 转换为 CSV。 在对数据进行预处理时,我首先尝试删除所有标点符号以及最常见的
我想不出如何一劳永逸地解决这些问题。当我尝试写“è”(我是意大利人)时,我第一次遇到这些问题。经过一些研究,我发现在最开始添加“#coding: utf-8”似乎可以解决问题....直到现在。 我编辑
我的数据存储包含值,我希望我的表单能够更新这些值。我在 jinja2 中使用 wtforms 和谷歌应用引擎。我收到一条我无法理解的错误消息: 'ascii' codec can't decode b
我们遇到了一个问题(描述为 http://wiki.python.org/moin/UnicodeDecodeError)——请阅读第二段“...自相矛盾...”。 具体来说,我们正在尝试将字符串向上
我正在尝试标记一些文档,但我遇到了这个错误 UnicodeDecodeError: 'ascii' codec can't decode byte 0xef in position 6: ordina
我想在一个文件中存储一个包含多个 numpy 数组的 Python 对象。我找到了 pickle,但在加载存储的对象时总是遇到 UnicodeDecodeError: Traceback (mos
我正在尝试制作一个 python 脚本来查找 USB 闪存驱动器中的重复文件。 我遵循的过程是创建一个文件名列表,散列每个文件,然后创建一个逆向字典。然而,在过程中的某个地方,我得到了一个 Unico
我是一名优秀的程序员,十分优秀!