# 天气预报列表
weathers=[('2018年4月17日','晴','20℃~7℃','微风转西风3~4级'),
('08:00','晴','13℃','微风'),
('12:00', '晴', '19℃', '微风'),
('16:00', '晴', '18℃', '西风3~4级'),
('20:00', '晴', '15℃', '西风3~4级'),
('00:00', '晴', '12℃', '微风'),
('04:00', '晴', '9℃', '微风')
]
# 循环天气预报列表
for weather in weathers:
# 循环输出列表内容 在 第二个参数前添加'天气预报:'
print('{},\t 天气预报:{},\t 温度:{},\t 体感:{} '.format(weather[0],weather[1],weather[2],weather[3]))