Python-if-elif-else语句.pdf


文档分类:IT计算机 | 页数:约2页 举报非法文档有奖
1/2
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/2
文档列表 文档介绍
IT-Homer 专栏
成功是优点的发挥,失败是缺点的积累! 不为失败找理由,只为成功找
方法……
Python-if-elif-else语句
分类: Script 2010-12-09 15:40 5358人阅读评论(0) 收藏举报
Source:
#!/bin/env python # coding=gb2312 # -*- coding: gb2312 -*- from __future__ import division #### if-
else #### print '#### if-else ####' a = input("a: ") # 12 or 10+2 b = input("b: ") if(a>b): print
"max: ", a else: print "max: ", b #### if-elif-else #### print '#### if-elif-else ####' score =
raw_input("score: ") # string score = int(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" ####
switch I #### print '#### switch ####' x = 1 y = 2 operator = "/" result = { "+": x+y, "-": x-y, "*":
x*y, "/": x/y } print (operator) #### switch II #### print '#### switch II ####' class
switch(object): def __init__(self, value): # init value = value = False # no
break, then fall=False def __iter__(self): yield # match method to create raise
StopIteration # exception to check loop def match(self, *args): if or not args: return True
elif in args: # essful = True return True else: # fail return False operator
= "+" x = 1 y = 2 for case in switch(operator): if case('+'): print x+y break if case('-'): print x-y
break if case('*'): print x*y break if case('

Python-if-elif-else语句 来自淘豆网m.daumloan.com转载请标明出处.

非法内容举报中心
文档信息
  • 页数2
  • 收藏数0 收藏
  • 顶次数0
  • 上传人翩仙妙玉
  • 文件大小0 KB
  • 时间2012-09-16
最近更新