Python编程例子:修订间差异

来自牛奶河Wiki
跳到导航 跳到搜索
第17行: 第17行:
     import fileinput,random
     import fileinput,random
     lunch = list(fileinput.input(openhook=fileinput.hook_encoded('utf-8','')))
     lunch = list(fileinput.input(openhook=fileinput.hook_encoded('utf-8','')))
     print(random.choice(lunch))
     print(random.choice(lunch))</code>
菜单.txt(每行回车)
菜单.txt
 
汉堡王
汉堡王
庆丰包子
庆丰包子
魏家凉皮
魏家凉皮
霸蛮米粉
霸蛮米粉
你的心跳酸菜鱼
你的心跳酸菜鱼
食堂
食堂
山西刀削面
山西刀削面
KFC
KFC
吉野家
吉野家
调用: 今天吃什么.py 菜单.txt
 
</code>
调用:  
<code> 今天吃什么.py 菜单.txt</code>
 
   
   




[[分类:Python]]
[[分类:Python]]

2024年1月12日 (五) 10:44的版本

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.今天吃什么

 #今天吃什么.py
   import fileinput,random
   lunch = list(fileinput.input(openhook=fileinput.hook_encoded('utf-8',)))
   print(random.choice(lunch))

菜单.txt

汉堡王

庆丰包子

魏家凉皮

霸蛮米粉

你的心跳酸菜鱼

食堂

山西刀削面

KFC

吉野家

调用: 今天吃什么.py 菜单.txt