文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>python 实例二

python 实例二

时间:2010-07-30  来源:zhaohang3031

if.py  

# if elif else语句
score = input("score:")
if(score >= 90) and (score <= 100):
    print "A"
elif(score >= 80) and (score < 90):
    print "B"
elif(score >= 60) and (score < 80):
    print "C"
else:
    print "D"


 

case.py

x = 1; y = 2

operator = "+"

def fun01():
      return x + y

def fun02():
      return x - y

def fun03():
      return x * y

def fun04():
      return x / y

def fun05():
      print 'error'

result = {
    "+" : fun01(),
    "-" : fun02(),
    "*" : fun03(),
    "/" : fun04(),
        "" : fun05()
}

print result.get(operator)


 

while.py

#!/usr/bin/python
# -*- coding: UTF-8 -*-
x = 0
while x < 50:
    x += 1
    print '第 %d 次循环.' % x


相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载