Sto usando Python per capire quanti bambini sarebbero nati in 5 anni se un bambino fosse nato ogni 7 secondi. Il problema è nella mia ultima riga. Come faccio a far funzionare una variabile quando stampo il testo su entrambi i lati?
Ecco il mio codice:
currentPop = 312032486
oneYear = 365
hours = 24
minutes = 60
seconds = 60
# seconds in a single day
secondsInDay = hours * minutes * seconds
# seconds in a year
secondsInYear = secondsInDay * oneYear
fiveYears = secondsInYear * 5
#Seconds in 5 years
print fiveYears
# fiveYears in seconds, divided by 7 seconds
births = fiveYears // 7
print "If there was a birth every 7 seconds, there would be: " births "births"
print(something)
(Anche Python2 è obsoleto da quest'anno.)