码迷,mamicode.com
首页 > 编程语言 > 详细

python语句

时间:2018-09-03 19:27:53      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:成绩   查询   必须   ima   input   oop   加油   语句   col   

if语句

第一种

if 4>5:
	print("你该去幼儿园好好学习学习了")
print("不错啊,知道啊")

第二种

if 4>5:
    print("你该去幼儿园好好学习学习了")
else:
    print("不错啊,知道啊")

第三种

num = input ("请输入你猜的数字:")  #input里边的都是字符型,字符型必须引号引起来
if num == "1":
	print ("你请我吃饭")
elif num == "2":
	print ("我请你吃饭")
elif num == "3":
	print ("你说谁请就谁请")
else:
	print ("我说谁请就谁请")

技术分享图片

第四种

score = int (input("请输入成绩:"))
if score >= 90:
    print("A")
elif score >= 80:
    print("B")
elif score >= 70:
    print("C")
elif score >= 60:
    print("D")
else:
    print("你没有及格,明年继续加油吧!")

技术分享图片

注:这里将字符型转化成了整型,所以后边的不带引号。只有数字的字符型才可以转化成整型。

第五种

name = input("请输入名字:")
age = input("请输入年龄:")
if name == "小禹哥":
    if age == "22":
        print("你找对了")
    else:
        print("你确定你没记错?")
else:
    print("对不起,你找的人查询不到,请到别处查找")

技术分享图片

while循环

第一种

输出1到100(当出现False时循环停止)

count = 1
flag = True  #标志位
while flag:
    print(count)
    count = count + 1
    if count > 100 :
        flag = False

 

 

count = 1
while count <= 100:
    print(count)
    count = count + 1
技术分享图片

第二种

count = 1
sum = 0
while count <= 100:
    sum = sum + count
    count =  count + 1
print(sum)

第三种

count = 0
while count <= 100 :
    count += 1
    if count > 5 and count <95:
        continue
    print("loop",count)
print(".......out of while loop.....")

 


 

python语句

标签:成绩   查询   必须   ima   input   oop   加油   语句   col   

原文地址:https://www.cnblogs.com/xiao-yuge/p/9580032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!