首页 >后端开发 >Python教程 >Python 中的条件逻辑:增强技能的示例

Python 中的条件逻辑:增强技能的示例

Barbara Streisand
Barbara Streisand原创
2024-11-28 09:19:11549浏览

条件逻辑允许程序根据某些条件做出决策。它允许您的代码根据条件是 True 还是 False 采取不同的操作。这些决定使用条件语句,例如 if、elif 和 else。

Conditional Logic in Python: Examples to Enhance Skills

  • 检查数字是正数、负数还是零
number = 5

if number > 0:
    print("Positive")
elif number < 0:
    print("Negative")
else:
    print("Zero")
  • 检查一年是否是闰年
year = 2024  

if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
    print("Leap Year")
else:
    print("Not a Leap Year")
  • 检查数字是偶数还是奇数
number = 10 

if number % 2 == 0:
    print("Even")
else:
    print("Odd")
  • 检查一个人是否有资格投票(年龄 >= 18)
age = 20

if age >= 18:
    print("Eligible to Vote")
else:
    print("Not Eligible to Vote")
  • 判断一个数是否能被5整除
number = 25  

if number % 5 == 0:
    print("Divisible by 5")
else:
    print("Not Divisible by 5")
  • 检查字符串是否为空
input_string = ""  
if not input_string:
    print("Empty String")
else:
    print("Non-Empty String")
  • 检查一个数字是否是 3 和 7 的倍数
number = 21  
if number % 3 == 0 and number % 7 == 0:
    print("Multiple of both 3 and 7")
else:
    print("Not a multiple of both 3 and 7")
  • 检查数字是否在两个值之间
number = 15  
if 10 < number < 20:
    print("Between 10 and 20")
else:
    print("Not Between 10 and 20")
  • 检查字母是否是元音
letter = 'A'  
if letter in 'aeiouAEIOU':
    print("Vowel")
else:
    print("Consonant")
  • 检查数字是否大于或等于 100
number = 150   
if number >= 100:
    print("Greater than or equal to 100")
else:
    print("Less than 100")
  • 检查字符串是否以特定字符开头
input_string = "Hello, World!"   
if input_string.startswith("H"):
    print("Starts with H")
else:
    print("Does not start with H")
  • 检查一个数是否是完全平方数
number = 16  # Example number to check
if int(number ** 0.5) ** 2 == number:
    print("Perfect Square")
else:
    print("Not a Perfect Square")
  • 检查字典中是否存在某个键
my_dict = {'name': 'John', 'age': 25}  # Example dictionary
if "name" in my_dict:
    print("Key 'name' exists")
else:
    print("Key 'name' does not exist")

以上是Python 中的条件逻辑:增强技能的示例的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn