python 输入输出 条件判断 循环

1、条件判断
score = int(input("请输入学生成绩:"))if score>100 and score <0:    print("请输入正确的成绩")elif score<=100 and score >=90:    print("优秀")elif score < 90 and score >= 80:    print("良好")elif score <80 and score >= 60:    print("及格")else:    print("不及格")
2、while循环

count =0
while count<4:    print(count)    count = count+1

# break 循环中遇到break立即结束# continue 循环里遇到continue就结束本次循环print(‘----------------------------‘)

import randomnumber = random.randint(1,100)print(number)count = 0while count <7:    guess = int(input("请输入一个1至100的随机数:"))    count = count + 1    if guess > number :        print("猜大了")    elif guess < number:        print("猜小了")    elif guess == number:        print("猜对了")        break    # if count != 7:    #     continue    # else:    #     print("错误次数用光了")#可直接在while平级加else,while循环正常结束后会直接执行else中代码else:    print("错误次数用光了")

3、continue
number = 0while number < 10:    number = number + 1    if number%2==0:        continue    print(number)
4、for循环、print、字符串输出import datetimefor i in range(4):    print("第",i+1,"次循环",sep="") #print 多个连接必须用sep作为间隔符print("-----------------------")#字符串格式化username = ‘linqian‘date = datetime.datetime.today()print(type(date))# msg = ‘欢迎‘+username+‘登录,‘+‘今天是‘+datemsg2 = ‘欢迎%s登录,今天是%s‘ %(username,date)# print(msg)print("-----------------------")print(msg2)

原文地址:https://www.cnblogs.com/lqcjlu/p/11371721.html

时间: 2024-10-11 09:17:34

python 输入输出 条件判断 循环的相关文章

python之条件判断、循环和字符串格式化

1. python的条件判断:if和else 在条件判断中可以使用算数运算符 等于:== 不等于:!= 大于:> 小于:< 大于等于:>= 小于等于:<= 示例1: username=input('请输入用户名:')passwd=input('请输入密码:')if username == 'mpp' and passwd == '123': print('登录成功')else: print('用户名或密码错误') 示例2:if里可以嵌套if,也可以使用elif score=int(

python(day1) - 条件判断和循环

条件判断: 比如输入用户年龄,根据年龄打印不同的内容,在python中用if语句实现: age = 20 if age >= 18: print('你可以看这个视频!') 可以给if加一个else,意思是如果if判断是False,就执行else里的内容 age = 20 if age >= 18: print('你可以看这个视频!') else: print('你不能观看这个视频!) 注意, 不要忘了 : 当然判断还可以做得更细一些 age =20 if age <18: print('

python之--条件判断和循环

Python之判断 和其他语言一样,python同样具有条件判断和循环的操作,比如我们可以编写一个简单的判断操作:使用if关键字可以达到判断的效果,如下例: 1 >>> test_if = raw_input() 2 50 3 >>> if test_if < 50: 4 ... print "you are so yamg" 5 ... else: 6 ... print "you are so old!" 7 ... 8

Python之条件判断和循环

1.if条件判断语句 1 score = 80 2 if score >= 60: 3 print 'Passed' 4 else: 5 print 'Failed' 注意: Python代码的缩进规则.具有相同缩进的代码被视为代码块. 缩进请严格按照Python的习惯写法:4个空格,不要使用Tab,更不要混合Tab和空格,否则很容易造成 因为缩进引起的语法错误. if 语句后接表达式,然后用:表示代码块开始.同样可以使用else if(elif)来进行分支判断. 总的来看跟C语言.shell脚

Python基础 条件判断和循环

pyhton if 语句 if 语句后接表达式,然后用: 表示代码块. age = 20 if age >= 18: print 'your age is', age print 'adult' your age is 20 adult python if-else if age >= 18: print 'adult' else: print 'teenager' 利用 if ... else ... 语句,我们可以根据条件表达式的值为 True 或者 False ,分别执行 if 代码块或

【Python】 条件判断 与 循环 与dict和set

# 条件判断 elif:  else if 的作用 注意: : [冒号]BMI =w/(h*h) if BMI<15:    print('较轻')elif BMI<25:    print('正常')else BIM:    print('肥胖') # 循环 for x in xs  有点类似 C#的foreachrange()  生成整数序列,range(101) 生成0~100的整数序列 while 循环 找不同一. n = 11 while n>10: n-1 print(n)

python笔记四(条件判断/循环/break和continue)

一 条件判断 if <条件判断1>: <执行1> elif <条件判断2>: <执行2> elif <条件判断3>: <执行3> else: <执行4> if判断条件还可以简写,比如写: if x: print('True') 只要x是非零数值.非空字符串.非空list等,就判断为True,否则为False. 二 循环 for...in循环 #列表的循环 names = ['Michael', 'Bob', 'Tracy'

第二章 Python基础之条件判断,循环

1.条件判断if   else 如: if age >=18 and scroe <= 100: #py中不使用&标识并集 等于使用== 不等于使用!= print('成年') else:                       #中间可以使用elif 加如其他条件     print ('dd') 2.循环 遍历 迭代 (1)while循环 需要先定义一个计数器,需要有结束的条件,否则会死循环 count =0 while count<20:     print('tian

python基础(3)--条件判断循环语句与列表解析,生成器

判断循环语句语法说明: 1,if if boolean_expression: ... elif boolean_expression: ... else ... 2,while while boolean_expression: while_suite if boolean_expression2: continue if boolean_expression3: break else: else_suite 3,for for expression in object: for_suite