python if else用法例子

发布网友 发布时间:2022-04-22 14:21

我来回答

1个回答

热心网友 时间:2023-11-08 20:05

Python中的if-else语句是一种常见的条件语句,用于根据条件执行不同的代码块。if-else语句的基本语法如下:

if condition:

# code block to execute if condition is True

else:

# code block to execute if condition is False

其中,condition是一个布尔表达式,如果为True,则执行if语句块中的代码,否则执行else语句块中的代码。

下面是一些if-else语句的例子:

num = 10

if num % 2 == 0:

print("The number is even.")

else:

print("The number is odd.")

这个例子中,我们使用了取模运算符(%)来判断一个数是否为偶数。如果num除以2的余数为0,则它是偶数,否则它是奇数。

year = 2020

if year % 4 == 0:

if year % 100 == 0:

if year % 400 == 0:

print("The year is a leap year.")

else:

print("The year is not a leap year.")

else:

print("The year is a leap year.")

else:

print("The year is not a leap year.")

这个例子中,我们使用了嵌套的if语句来判断一个年份是否为闰年。如果一个年份可以被4整除,但不能被100整除,或者可以被400整除,则它是闰年。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com