博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python的if语句
阅读量:5289 次
发布时间:2019-06-14

本文共 616 字,大约阅读时间需要 2 分钟。

1、if-else语句

Tom_age = input('The age of Tom:' )Mary_age = input('The age of Mary:')if Tom_age > Mary_age:     print('Tom older than Mary.')else:    print('Mary older than Tom.')#如果Tom和Mary的年龄一样大怎么办?

输出结果:

The age of Tom:15

The age of Mary:14
Tom older than Mary.

2、if-elif-else

Tom_age = input('The age of Tom:' )Mary_age = input('The age of Mary:')if Tom_age > Mary_age:     print('Tom older than Mary.')elif Tom_age == Mary_age:    print('Mary is as old as Tom.')else:    print('Tom younger than Mary.')

The age of Tom:11

The age of Mary:11
Mary is as old as Tom.

 

转载于:https://www.cnblogs.com/dotstar/p/8331550.html

你可能感兴趣的文章
HTML5 表单元素
查看>>
五子棋项目的实现(二)博弈树算法的描述
查看>>
Hibernate : Disabling contextual LOB creation as createClob() method threw error
查看>>
【bzoj4872】[Shoi2017]分手是祝愿 期望dp
查看>>
字符串元转分
查看>>
程序员网址大全(转)
查看>>
thinkphp 防sql注入
查看>>
Go语言规范1 - 统一规范篇
查看>>
s5-11 距离矢量路由选择协议
查看>>
MSSQL-SQL SERVER一些使用中的技巧
查看>>
用Vue中遇到的问题和处理方法(一)
查看>>
ASP.Net 打通服务器代码和前台界面的特殊符号
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
winform 实现类似于TrackBar的自定义滑动条,功能更全
查看>>
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
RAP在centos上的部署
查看>>
java 8 新特性
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
VS2015 create a C++ console application based on WinRT
查看>>