python 除数为0

阅读: 评论:0

python 除数为0

python 除数为0

我还在为我的多项选择测验项目而辛苦工作。我快到了。只有几个虫子还没解决。这个程序会记录你得到的正确的,错误的,以及当前的百分比。但是,我的程序不会运行,因为最初,用户没有回答任何问题。因此,它们的正确率为NULL%。我的代码如下:import random

import sys

import os

import math

right_answer_total = float(0)

wrong_answer_total = float(0)

answer_total = float(right_answer_total + wrong_answer_total)

percentage = 100 * (float(right_answer_total) / float(answer_total))

word_drills = {'class': 'Tell Python to make a new kind of thing.',

'object': 'Two meanings: the most basic kind of thing, and any instance of some thing.',

'instance': 'What you get when you tell Python to create a class.',

'def': 'How you define a function inside a class.',

'self': 'Inside the functions in a class, self is a variable for the instance/object being accessed.',

'inheritance': 'The concept that one class can inherit traits from another class, much like you and your parents.',

'composition': 'The concept that a class can be composed of other classes as parts, much like how a car has wheels.',

'attribute': 'A property classes have that are from composition and are usually variables.',

'is-a': 'A phrase to say that something inherits from another, as in a Salmon *** Fish',

'has-a': 'A phrase to say that something is composed of other things or has a trait, as in a Salmon *** mouth.'}

def start():

# For loop that creates a list named keys. It grabs 3 random keys from the dictionary word_drills

keys = [x for x in random.sample(word_drills, 3)]

# User is presented with a question. A value from the previous randomly selected keys is selected as the 'question'

correctanswer = word_drills[random.choice(keys)]

print "Question: ", correctanswer

# Set the variables key1, key2, & key3 to the 3 keys in the list 'keys'

key1, key2, key3 = keys[0], keys[1], keys[2]

# User is presented with 3 choices.

print "nn(a)%s (b)%s (c)%s" % (key1, key2, key3)

a, b, c = word_drills[key1], word_drills[key2], word_drills[key3]

selection = raw_input("> ")

print selection

if selection == "a":

if a == correctanswer:

print "That's correct!"

answered_correctly()

else:

print "I'm sorry, that "

not_answered_correctly()

elif selection == "b":

if b == correctanswer:

print "That's correct!"

answered_correctly()

else:

print "I'm sorry, that "

not_answered_correctly()

elif selection == "c":

if c == correctanswer:

print "That's correct!"

answered_correctly()

else:

print "I'm sorry, that "

not_answered_correctly()

else:

print "That is not a valid selection."

exit(0)

def answered_correctly():

global right_answer_total

right_answer_total += 1

stat_tracking()

def not_answered_correctly():

global wrong_answer_total

wrong_answer_total += 1

stat_tracking()

def stat_tracking():

os.system('cls' if os.name=='nt' else 'clear')

print "-" * 37

print "| Stat Tracking |"

print "-" * 37

print "| Correct | Incorrect | Percentage |"

print "-" * 37

print "| %d | %d | %d %% |" % (right_answer_total, wrong_answer_total, percentage)

print "-" * 37

print "nnn"

start()

stat_tracking()

我不确定是否有一个解决办法,或者我可能做的一切都错了。任何和所有的援助将不胜感激。谢谢。在

本文发布于:2024-01-28 00:55:15,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/17063745143677.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:数为   python
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23