python练手_11-养兔子

# -*- coding:utf-8 -*-
# @Author: CH
"""
@project: python study
@time:
@detail:
@else: DO NOT STOP STUDYING!!!
"""
#题目 有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?
month=int(input('繁殖几个月?: '))
month_1=1
month_2=0
month_3=0
month_elder=0
for i in range(month):
    month_1,month_2,month_3,month_elder=month_elder+month_3,month_1,month_2,month_elder+month_3                              # 这个赋值?啥意思?
    #以下为猜测:(经测,不是!!)
    # month_1 = month_elder + month_3
    # month_2 = month_1
    # month_3 = month_2
    # month_elder = month_elder + month_3


    #注意:打印的位置,决定打印的内容与次数
print('第%d个月共'%(i+1),month_1+month_2+month_3+month_elder,'对兔子')     #不是很明白这个怎么这样写?!
print('其中生长了1个月兔的对数:',month_1)
print('其中生长了2个月兔的对数:',month_2)
print('其中生长了3个月兔的对数:',month_3)
print('其中的成年兔的对数:',month_elder)

你可能感兴趣的:(python练手_11-养兔子)