系统网络运维zhaohang3031.blog.chinaunix.net
zhaohang3031
全部博文(240)
2017年(8)
2014年(4)
2013年(15)
2012年(4)
2011年(14)
2010年(55)
2009年(140)
wb123456
酷小川11
gdmzhqf
heu
Bsolar
浪花小雨
Phyllis6
vipty
grjboy30
分类: Python/Ruby
2009-09-19 21:56:27
#!/usr/bin/python# -*- coding: UTF-8 -*-# 使用字典实现switch语句from __future__ import divisionx = 1y = 2operator = raw_input("Please input + or - or * or / :")result = { "+" : x + y, "-" : x - y, "*" : x * y, "/" : x / y }print result.get(operator)
上一篇:三引号制作doc文档
下一篇:冒泡算法的实现
登录 注册