我是靠谱客的博主 敏感指甲油,最近开发中收集的这篇文章主要介绍python中每个if条件后面都要使用冒号_python中if 条件判断代码解析,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本篇文章给大家带来的内容是关于python中if 条件判断代码解析,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

条件语句的执行过程:

67daa3d8fe61e9d5d815839dae7097e1.png

if 条件判断注意:

1.每个条件后面要使用冒号 : ,表示条件为True时要执行的代码;

2.使用缩进来划分代码块,相同缩进数的语句在一起组成一个代码块。

if...else,单条件判断username_store = 'lipandeng'

password_store = '123'

username_input = input('your username:')

password_input = input('your password:')

if username_input == username_store and password_input == password_input:

print('welcome {0}'.format(username_input))

else:

print('Invalid username and password!')

if...elif...else,多条件判断score = int(input('Enter your score:')) # input()返回的数据类型是str,int()函数是把str转int。

if score < 0 or score > 100: # 条件1,此条件为True时执行print(),elif后面的代码不再执行。

print('Scores of the range is 0-100.')

elif score >= 90: # 条件2,当条件1为False时判断条件2,此条件为True时执行print(),elif后面的代码不再执行。

print('Your score is excellent.')

elif score >= 60: # 条件3,当条件1和条件2为False时判断条件3,此条件为True时后执行print(),elif后面的代码不再执行。

print('Your score is good.')

else: # 条件4,以上判断条件都为False时执行的print()。

print('Your score is not pass the exam.')

最后

以上就是敏感指甲油为你收集整理的python中每个if条件后面都要使用冒号_python中if 条件判断代码解析的全部内容,希望文章能够帮你解决python中每个if条件后面都要使用冒号_python中if 条件判断代码解析所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部