The US Census Bureau projects population based on the following assumptions:One birth every 7 secondsOne death every 13 secondsOne new immigrant every 45 secondsWrite a program to display the population for each of the next five years. Assume the current population is 312032486 and one year has 365 days. Hint: in Python, you can use integer division operator // to perform division. The result is an integer. For example, 5 // 4 is 1 (not 1.25) and 10 // 4 is 2 (not 2.5).
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here