请使用列表索引根据整型变量 month
判断特定月份有多少天,并将该值存储在整型变量 num_days
中。例如,如果 month
是 8,num_days
应该设为 31,因为第八个月份八月应该有 31 天
month = 8
days_in_month = [31,28,31,30,31,30,31,31,30,31,30,31]
# use list indexing to determine the number of days in month
print(num_days)
weixin_慕妹1077343
慕仰0518380
慕后端9321733
慕后端9321733