《Python编程从入门到实践》学习笔记05If语句

这篇具有很好参考价值的文章主要介绍了《Python编程从入门到实践》学习笔记05If语句。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

#一个简单的示例
cars=['audi','bmw','subaru','toyota']
for car in cars:
    if car=='bmw':
        print(car.upper())
    else:
        print(car.title())

Audi
BMW
Subaru
Toyota

#条件测试
#检查是否相等
car='bmw'
car=='bmw'

True

car='audi'
car=='bmw'

False

#检查是否相等时忽略大小写
car='Audi'
car=='audi'

False

car='Audi'
car.lower()=='audi'

True

car

‘Audi’

#检查是否不相等
requested_topping='mushrooms'
if requested_topping!='anchovices':
    print('Hold the anchovices!')

Hold the anchovices!

#数值比较
age=18
age==18

True

answer=17
if answer!=42:
    print('This is not the correct answer.')

This is not the correct answer.

age=18
age<21

True

age=18
age>=21

False

#检查多个条件
age_0=22
age_1=18

age_0>=21 and age_1>=21

False

age_0=22
age_1=18

age_1=22
age_0>=21 and age_1>=21

True

age_0=22
age_1=18

age_0>=21 or age_1>=21

True

age_0=22
age_1=18

age_0=18
age_0>=21 or age_1>=21

False

#检查特点值是否包含在列表中
requested_troppings=['mushrooms','obinions','pineapple']
'mushrooms' in requested_troppings

True

requested_troppings=['mushrooms','obinions','pineapple']
'pepperoni' in requested_troppings

False

#检查特点值是否不包含在列表中
banned_users=['andrew','carolina','david']
user='marie'

if user not in banned_users:
    print(f'{user.title()},you can post a response if you wish.')

Marie,you can post a response if you wish.

#布尔表达式
game_active=True
can_edit=False
#If
#if conditional_test:
#    do something
age=19
if age>=18:
    print('you are old enough to vote!')

you are old enough to vote!

age=19
if age>=18:
    print('you are old enough to vote!')
    print('Have you registered to vote yet?')

you are old enough to vote!
Have you registered to vote yet?

#If Else
age=17

if age>=18:
    print('you are old enough to vote!')
    print('Have you registered to vote yet?')
else:
    print('Sorry,you are too young to vote')
    print('Please register to vote as soon as you turn 18!')

Sorry,you are too young to vote
Please register to vote as soon as you turn 18!

#if-elif-else
age=12
if age<4:
    print('Your admission cost is $0.')
elif age <18:
    print('Your admission cost is $25.')
else:
    print('Your admission cost is $40.')

Your admission cost is $25.

age=12
if age<4:
    price=0
elif age <18:
    price=25
else:
    price=40
print(f'Your admission cost is ${price}.')

Your admission cost is $25.

age=30
if age<4:
    price=0
elif age <18:
    price=25
elif age <65:
    price=40
else:
    price=20
print(f'Your admission cost is ${price}.')

Your admission cost is $40.

age=30
if age<4:
    price=0
elif age <18:
    price=25
elif age <65:
    price=40
else:
    price=20
print(f'Your admission cost is ${price}.')

Your admission cost is $40.

requested_toppings=['mushrooms','green peppers','extra cheese']
for requested_topping in requested_toppings:
    print(f'Adding {requested_topping}')
print('\nFinished making your pizza!')

Adding mushrooms
Adding green peppers
Adding extra cheese

Finished making your pizza!

requested_toppings=['mushrooms','green peppers','extra cheese']
for requested_topping in requested_toppings:
    if requested_topping == 'green peppers':
        print('sorry,we are out of green peppers right now.')
    else:
        print(f'Adding {requested_topping}')
print('\nFinished making your pizza!')

Adding mushrooms
sorry,we are out of green peppers right now.
Adding extra cheese

Finished making your pizza!

requested_toppings=[]

if requested_toppings:
    for requested_topping in requested_toppings:
        print(f'Adding {requested_topping}.')
    print('\nFinish making your pizza!')
else:
    print('Are you sure you want to plan pizza?')

Are you sure you want to plan pizza?

#使用多个列表
available_toppings=['mushrooms','olives','green peppers','pepperoni','pineapple','extra cheese']
requested_toppings=['mushrooms','french fries','extra cheese']

for requested_topping in requested_toppings:
    if requested_topping in available_toppings:
        print(f'Adding{request_topping}.')
    else:
        print(f"sorry,we don't have {requested_topping}." )
print('\nFinish making your pizza!')

Addingmushrooms.
sorry,we don’t have french fries.
Addingmushrooms.

Finish making your pizza!文章来源地址https://www.toymoban.com/news/detail-469347.html

到了这里,关于《Python编程从入门到实践》学习笔记05If语句的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Python入门(六)if语句(一)

    作者:xiou 编程时经常需要检查一系列条件,并据此决定采取什么措施。在Python中,if语句让你能够检查程序的当前状态,并采取相应的措施。 下面是一个简短的示例,演示了如何使用if语句来正确地处理特殊情形。 假设你有一个汽车列表,并想将其中每辆汽车的名称打印出

    2024年02月04日
    浏览(30)
  • 【Python入门】Python的判断语句(if elif else语句)

    前言 📕作者简介: 热爱跑步的恒川 ,致力于C/C++、Java、Python等多编程语言,热爱跑步,喜爱音乐的一位博主。 📗本文收录于Python零基础入门系列,本专栏主要内容为Python基础语法、判断、循环语句、函数、函数进阶、数据容器、文件操作、异常模块与包、数据可视化等,

    2024年02月04日
    浏览(40)
  • 【Python入门篇】——Python中判断语句(布尔类型,比较运算符,if语句)

    作者简介: 辭七七,目前大一,正在学习C/C++,Java,Python等 作者主页: 七七的个人主页 文章收录专栏: Python入门,本专栏主要内容为Python的基础语法,Python中的选择循环语句,Python函数,Python的数据容器等。 欢迎大家点赞 👍 收藏 ⭐ 加关注哦!💖💖 进行判断,只有2个

    2024年02月03日
    浏览(31)
  • Python中的if语句:一个简单的正负数判断示例

    本文介绍了如何在Python中使用 if 语句编写一个简单的程序,用于判断用户输入数字的正负性。示例代码易于理解,适用于初学者学习。 1. 介绍 if 语句是编程中非常基本和重要的一个概念,它让程序根据条件执行特定的代码块。在Python中, if 语句的语法非常简单,易于学习。

    2024年02月09日
    浏览(28)
  • 【Python入门篇】——Python中判断语句(if elif else语句,判断语句的嵌套与实战案例)

    作者简介: 辭七七,目前大一,正在学习C/C++,Java,Python等 作者主页: 七七的个人主页 文章收录专栏: Python入门,本专栏主要内容为Python的基础语法,Python中的选择循环语句,Python函数,Python的数据容器等。 欢迎大家点赞 👍 收藏 ⭐ 加关注哦!💖💖 某些场景下,判断

    2024年02月04日
    浏览(36)
  • 【零基础入门学习Python---Python网络编程之django快速入门实践】

    🚀 Python 🚀 🌲 算法刷题专栏 | 面试必备算法 | 面试高频算法 🍀 🌲 越难的东西,越要努力坚持,因为它具有很高的价值,算法就是这样✨ 🌲 作者简介:硕风和炜,CSDN-Java领域优质创作者🏆,保研|国家奖学金|高中学习JAVA|大学完善JAVA开发技术栈|面试刷题|面经八股文|经验

    2024年02月16日
    浏览(34)
  • 【零基础入门学习Python---Python中安全编程和测试之快速入门实践】

    🚀 零基础入门学习Python🚀 🌲 算法刷题专栏 | 面试必备算法 | 面试高频算法 🍀 🌲 越难的东西,越要努力坚持,因为它具有很高的价值,算法就是这样✨ 🌲 作者简介:硕风和炜,CSDN-Java领域优质创作者🏆,保研|国家奖学金|高中学习JAVA|大学完善JAVA开发技术栈|面试刷题

    2024年02月12日
    浏览(33)
  • Linux--shell编程中的if语句

        1. if if 语句语法格式: if condition then     command1     command2     ...     commandN fi      1)判断当前系统是否有多个ssh进程,如果有则打印true test12.sh #!/bin/bash if   [   $(ps -ef | grep -c \\\"ssh\\\")   - gt 1   ] then     echo   \\\"true\\\"   fi       2)判断/media/cdrom文件是否存在,若

    2024年02月21日
    浏览(30)
  • python教程 入门学习笔记 第3天 编程基础常识 代码注释 变量与常量

    编程基础常识 一、注释 1、对代码的说明与解释,它不会被编译执行,也不会显示在编译结果中 2、注释分为:单行注释和多行注释 3、用#号开始,例如:#这是我的第一个python程序 4、注释可以写在单独一行,也可以写在一句代码后面 5、不想执行编译,又不能删除的代码,可

    2024年02月14日
    浏览(41)
  • 【书生·浦语大模型实战营05】《(5)LMDeploy 大模型量化部署实践》学习笔记

    课程文档:《LMDeploy 的量化和部署》 定义 将训练好的模型在特定软硬件环境中启动的过程,使模型能够接收输入并返回预测结果 为了满足性能和效率的需求,常常需要对模型进行优化,例如模型压缩和硬件加速 产品形态 云端、边缘计算端、移动端 内存开销巨大 庞大的参数

    2024年01月22日
    浏览(37)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包