Tôi đang sử dụng python để tìm ra bao nhiêu đứa trẻ sẽ được sinh ra trong 5 năm nếu một đứa trẻ được sinh ra cứ sau 7 giây. Vấn đề là ở dòng cuối cùng của tôi. Làm cách nào để một biến hoạt động khi tôi in văn bản ở hai bên của nó?
Đây là mã của tôi:
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"