2016-04-24 9 views
0

「最高」と「平均」を高い順にソートしようとしていますが、テキストファイルからソートする辞書を取得できません。代わりに配列を使用するべきかどうか、あるいはその周囲に方法があるかどうかはわかりません。PYTHONテキストファイルから辞書を並べ替える

これは私のコードです:

import random 
score = 0 
print("Hello and welcome to the maths quiz!") 
while True: 
    position = input("Are you a pupil or a teacher?: ").lower() 
    if position not in ("teacher","pupil"): 
     print ("Please enter 'teacher' or 'pupil'!") 
     continue 
    else: 
     break 

if position == 'pupil': 

your_name = "" 
while your_name == "": 
    your_name = input("Please enter your name:") # asks the user for their name and then stores it in the variable name 

class_no = "" 
while class_no not in ["1", "2", "3"]: 
    class_no = input("Please enter your class - 1, 2 or 3:") # Asks the user for an input 

score = 0 

for _ in range(10): 
    number1 = random.randint(1, 11) 
    number2 = random.randint(1, 11) 
    operator = random.choice("*-+") 
    question = ("{0} {1} {2}".format(number1,operator,number2)) 

    solution = eval(question) 

    answer = input(question+" = ") 

    if answer == str(solution): 
     score += 1 
     print("Correct! Your score is, ", score ,) 

    else: 
     print("Your answer is not correct") 

class_no = ("Class " + class_no + ".txt") 

print("Congratulations {0}, you have finished your ten questions!".format(your_name)) 
if score > 5: 
    print("Your total score is {0} which is over half.".format(score)) 
else: 
    print("Better luck next time {0}, your score is {1} which is lower than half".format(your_name, score)) 

with open(class_no, "a") as Student_Class: 
    Student_Class.write(your_name) 
    Student_Class.write(",") 
    Student_Class.write(str(score)) 
    Student_Class.write("\n") 
else: 
    while True: 
    Group = input("Which class would you like to view first? 1, 2 or 3?: ") 
    if Group not in ("1", "2", "3"): 
     print ("That's not a class!") 
     continue 
    else: 
     break 

Group = ("Class " + Group + ".txt") 

while True: 
    teacherAction = input("How would you like to sort the results? 'alphabetical', 'highest' or 'average'?: ").lower() # Asks the user how they would like to sort the data. Converts answer into lower case to compare easily. 
    if teacherAction not in ("alphabetical","highest","average"): 
     print ("Make sure you only input one of the three choices!") 
     continue 
    else: 
     break 


with open (Group, "r+") as scores: 
    PupilAnswer = {} 
    for line in scores: 
     column = line.rstrip('\n').split(',') 
     name = column[0] 
     score = column[1] 

     score = int(score) 

     if name not in PupilAnswer: 
      PupilAnswer[name] = [] 
     PupilAnswer[name].append(score) 
     if len(PupilAnswer[name]) > 3: 
      PupilAnswer[name].pop(0) 

if teacherAction == 'alphabetical': 
    for key in sorted(PupilAnswer): 
     print(key, PupilAnswer[key]) 

elif teacherAction == 'highest': 
    highest = {} 
    for key, value in PupilAnswer.items(): 
     maximum = max(value) 
     highest[key] = maximum    
    for key in sorted(highest, key=highest.get, reverse=True): 
     print (key, highest[key]) 

else: 
    for name in sorted(PupilAnswer): 
     average = [] 
     for key in (PupilAnswer[name]): 
      average.append(key) 

     length = len(average) 
     total = 0 

     for key in (average): 
      total = total + (key) 
     totalAverage = (total)/length 

     print (name, totalAverage) 

print ("Thank you for using the quiz!") 
input("Press 'enter' to exit!") 
+0

1)sorted(d.values())2)SortedDict – Andrey

+0

[Pythonの辞書はソートできません!](http://code.activestate.com/recipes/52306-to-sort-a-dictionary/) –

+0

'最高 '条件内の' for'ループが正しく表示されません。 – Greg0ry

答えて

0

何の辞書に "ソート" はありません。それらはキー値項目のセットです。順序なし。
OrderedDictを使用できます。

+0

これは質問に答えません。辞書をソートすることはできませんが、アイテムを順番に表示することはできます。 – Greg0ry

+0

タイトル: "PYTHON辞書からのソート"、最初の文: "私は辞書をソートしようとしています"。私はそれを見て、これは完全に質問に答える。もしあなたが同意しないならば、あなたは答えを下降させるかもしれない。 – Idos

+0

いいえ、彼のコードサンプルを読めば、彼は辞書をどのようにソートするのか分からず、ソートされた順序でそれを表示する方法を尋ねることはないだろう。 – Greg0ry

関連する問題