나는 7 초마다 아이가 태어났다면 5 년 동안 몇 명의 아이가 태어날 지 파이썬을 사용하고 있습니다. 문제는 마지막 줄에 있습니다. 텍스트를 인쇄 할 때 변수를 작동 시키려면 어떻게해야합니까?
내 코드는 다음과 같습니다.
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)
(또한 Python2는 올해 이후로 구식입니다.)