Feladat kész
This commit is contained in:
parent
89d8882a02
commit
9d1c3f8cb8
17
atlagok.py
17
atlagok.py
|
@ -0,0 +1,17 @@
|
||||||
|
with open('szavazatok.txt',encoding='utf-8') as befajl:
|
||||||
|
szavlista = [sor.strip().split(' ') for sor in befajl.readlines()]
|
||||||
|
|
||||||
|
print(szavlista)
|
||||||
|
|
||||||
|
#a szavazatok külön listába gyűjtése
|
||||||
|
szavszamok = [ int(elem[1]) for elem in szavlista]
|
||||||
|
print(szavszamok)
|
||||||
|
print("Az átlagos szavazatszam: {0:.2f}".format(sum(szavszamok)/len(szavszamok)))
|
||||||
|
|
||||||
|
nyertes5 = []
|
||||||
|
for elem in szavlista:
|
||||||
|
if elem[0] == '5':
|
||||||
|
if len(nyertes5)==0 or int(nyertes5[1])<int(elem[1]):
|
||||||
|
nyertes5 = elem
|
||||||
|
|
||||||
|
print(nyertes5)
|
Loading…
Reference in New Issue
Block a user