-
Notifications
You must be signed in to change notification settings - Fork 0
/
capitolo17.py
62 lines (49 loc) · 1.96 KB
/
capitolo17.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
def int_in_tempo(secondi):
tempo = Tempo()
minuti, tempo.secondi = divmod(secondi, 60) # type: ignore
tempo.ore, tempo.minuti = divmod(minuti, 60) # type: ignore
return tempo
class Tempo:
"""Rappresenta un'ora del giorno
attributi: ore, minuti, secondi"""
def __init__(self, ore=0, minuti=0, secondi=0):
self.ore = ore
self.minuti = minuti
self.secondi = secondi
def __str__(self):
return '%.2d:%.2d:%.2d' % (self.ore, self.minuti, self.secondi)
def __add__(self, other):
if isinstance(other, Tempo):
return self.somma_tempo(other)
else:
return self.incremento(other)
def __radd__(self, other):
return self.__add__(other)
def in_int(self):
minuti = self.ore * 60 + self.minuti
secondi = minuti * 60 + self.secondi
return secondi
def somma_tempo(self, other):
secondi = self.in_int() + other.in_int()
return int_in_tempo(secondi)
def incremento(self, secondi):
secondi += self.in_int()
return int_in_tempo(secondi)
def viene_dopo(self, other):
return self.in_int() > other.in_int()
class Canguro:
"""Rappresenta un oggetto-canguro:
attributi: nome, contenuto_tasca"""
def __init__(self, nome='senza_nome', contenuto_tasca=None):
"""Inizializza un oggetto-canguro, ha due parametri opzionali:
una stringa nome (default=senza_nome), una lista contenuto_tasca (default=None)"""
self.nome = nome
if contenuto_tasca == None:
contenuto_tasca = []
self.contenuto_tasca = contenuto_tasca
def __str__(self):
"""Restituisce una stringa di tupla col nome del canguro e il contenuto della tasca"""
return '(%s, %s)' % (self.nome, self.contenuto_tasca)
def intasca(self, oggetto):
"""Aggiunge un oggetto al contenuto della tasca del canguro"""
self.contenuto_tasca.append(oggetto)