------------ 斐波那契 数列 --------------- 【1,1,2,3,5,8,13,21,34,...】 1 列表方法实现 # l=[1,1]## # while len(l)<=20:# # l.append(l[-1]+l[-2])# # print(l)## while len(l)!=4:# l.append(l[-1]+l[-2])# print(l)# 2 迭代实现 # n=10## n1 = 1# n2 = 1# n3 = 1## if n<=2:# re=1# print(re)# if n>2:# m=1# while m <= n-2:# n3 = n1 + n2# n1 = n2# n2 = n3# m+= 1# re=n3## print(re)
--------------- eval() -------- 把字符串 强转 为实际的数据 eval(‘print(123)‘) eval(‘func‘)() eval 存在安全隐患---->> 会把其他关键字识别---使用
时间: 2024-10-24 10:40:56