0
I am doing a project in which I need to perform a loop that increases minute by minute of a variable from two times informed.
I thought of logic as follows:
vHoraInicial = '13:30'
vHoraFinal = '15:00'
While vHoraInicial <= vHoraFinal:
print (vHoraInicial)
vHoraInicial = vHorainicial + 1
Result of the print: 13:30
13:31
13:32
...
15:00
But I don’t know the functions that help me to manipulate variable 'TIME'. Anyone have any idea?
Thank you
And how will it work in situations where the day turns ? These cases are supposed to be contemplated ?
– Isac
Actually no Isac, I just want to check the maximum from 00:00 till 23:59
– Clayton Tosatti