# 分析以下数字的规律,1 1 2 3 5 8 13 21 34用Python语言编程实现输出 a=0 b=1 for i in range(10): sum=a+b a=b b=sum print a, 结果