forked from tdwojak/Python2017
Poprawione ćw 3
This commit is contained in:
parent
689e3bc8ee
commit
5238249af5
@ -5,4 +5,4 @@ for i in glob.glob('scores/*'):
|
|||||||
file=open(i,'r').read().replace(",","").split(" ")
|
file=open(i,'r').read().replace(",","").split(" ")
|
||||||
bleu[i]=float(file[2])
|
bleu[i]=float(file[2])
|
||||||
|
|
||||||
print("Minimalna wartość BLEU znaleziona w pliku: " +min(bleu, key=bleu.get))
|
print("Maksymalna wartość BLEU znaleziona w pliku: " +max(bleu, key=bleu.get))
|
@ -2,22 +2,36 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
class Employee:
|
class Employee:
|
||||||
id=1
|
id=0
|
||||||
|
|
||||||
def __init__(self, imie, nazwisko):
|
def __init__(self, imie, nazwisko):
|
||||||
self.imie= imie
|
self.imie= imie
|
||||||
self.nazwisko=nazwisko
|
self.nazwisko=nazwisko
|
||||||
|
self.id=id(self)
|
||||||
|
|
||||||
def get_id(self):
|
def get_id(self):
|
||||||
return self.id
|
return self.id
|
||||||
|
|
||||||
Prac=Employee('Anna', 'Nowak')
|
class Recruiter(Employee):
|
||||||
print(Prac)
|
recruited=[]
|
||||||
"""
|
def __init__(self, imie, nazwisko):
|
||||||
class Prostokat(Figura):
|
super().__init__(imie,nazwisko)
|
||||||
def __init__(self, vertexes):
|
|
||||||
super().__init__(vertexes)
|
|
||||||
|
|
||||||
def czy_jestem_kwadratem(self):
|
def recruit(self, empId):
|
||||||
pass
|
self.recruited.append(empId)
|
||||||
"""
|
|
||||||
|
|
||||||
|
|
||||||
|
class Programmer(Employee):
|
||||||
|
def __init__(self, imie, nazwisko, rekruter):
|
||||||
|
super().__init__(imie,nazwisko)
|
||||||
|
self.recruiter=rekruter.get_id()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
prac1=Employee('Anna', 'Nowak')
|
||||||
|
prac2=Recruiter('Jan', 'Kowalski')
|
||||||
|
prac3=Programmer('Ala', 'Makota',prac2)
|
||||||
|
|
||||||
|
print(prac1.get_id())
|
||||||
|
print(prac2.get_id())
|
||||||
|
print(prac3.get_id(), "Zrekrutowany przez ",prac3.recruiter)
|
Loading…
Reference in New Issue
Block a user