我是靠谱客的博主 负责滑板,最近开发中收集的这篇文章主要介绍if语句的简单使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#!/usr/bin/python
#-*- coding:utf8 -*-

from __future__ import division

#简单的讲解if的使用 elif  switch的使用
def cmp(a, b):
    if a > b:
        print "a is bigger than b"
    elif a == b:
        print "a is eual to b"
    else:
        print "a is smaller than b"


#a = input("please enter a num: ")
#b = input("please enter other num: ")
#cmp(a,b)

#现在来介绍raw_input的使用
num = raw_input("please enter a num: ")
num = int(num)
print "the num is: ", num

string = raw_input("please enter a string: ");
print "the string is: ",string

#现在来演示elif的使用
score = input("enter the score: ")
if(score >= 90) and (score<=100):
    print "A"
elif(score >= 80) and (score <= 90):
    print "B"
elif(score >= 70) and (score <= 80):
    print "C"
elif(score >= 60) and (score <= 70):
    print "D"
else:
    print "E"




#现在来演示一下switch效果  注意 python中没有switch关键字额
#from __future__ import division
m = 1
n = 2
operator = "/"
result = {
    "+": m + n,
    "-": m - n,
    "*": m * n,
    "/": m / n
}

print "the result is: ",result.get(operator)

最后

以上就是负责滑板为你收集整理的if语句的简单使用的全部内容,希望文章能够帮你解决if语句的简单使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部