I'm doing a project in which I need to make a loop that increases minute by minute of a variable from two times.
I thought of logic in the following way:
vHoraInicial = '13:30'
vHoraFinal = '15:00'
While vHoraInicial <= vHoraFinal:
print (vHoraInicial)
vHoraInicial = vHorainicial + 1
Print Result: 13:30
13:31
13:32
...
15:00
But I do not know the functions that help me manipulate variable 'TIME'. Anyone have any ideas?
Thank you