Python编程例子

来自牛奶河Wiki
跳到导航 跳到搜索

1.编写 斐波那契数列 的初始子序列

a, b = 0,1
   while a < 10:
   print(a)
   a, b= b, a+b

或者

def fab(max): 
   n, a, b = 0, 0, 1 
   while n < max: 
       print b 
       a, b = b, a + b 
       n = n + 1
fab(5)

2.今天吃什么

  1. 今天吃什么.py

import fileinput,random lunch = list(fileinput.input(openhook=fileinput.hook_encoded('utf-8',))) #转码 print(random.choice(lunch))