专业编程基础技术教程

网站首页 > 基础教程 正文

Python 取模实践:如何使用 % 运算符(2)

ccvgpt 2024-12-13 12:08:31 基础教程 1 ℃

现在您已经了解了 Python 模运算的基础知识,您将看一些使用它来解决实际编程问题的示例。下面的示例将使您了解它的多种使用方式。

  • 如何检查一个数是偶数还是奇数

使用模运算符,可以检查任何数字是否可以被2整除,被2取模结果为0。如果可整除的,那么它就是偶数。

Python 取模实践:如何使用 % 运算符(2)

def is_even(num):

return num % 2 == 0

检查是否为奇数相似,改变关系运算符:

def is_odd(num):

return num % 2 != 0

是否可以使用以下函数来确定是否为奇数:

def is_odd(num):

return num % 2 == 1

答案是否定的,原因如下:

>>> -3 % 2

1

>>> 3 % -2

-1

>>> -2 % 2

0

>>> 2 % -2

0

  • 如何创建循环迭代

循环迭代描述了一种迭代,一旦到达某个点就会重置。通常,这种类型的迭代用于将迭代的索引限制在一定范围内。您可以使用模运算符来创建循环迭代。看一个使用turtle库绘制形状的示例:

import turtle
import random

def draw_with_cyclic_iteration():
    colors = ["green", "cyan", "orange", "purple", "red", "yellow", "white"]

    turtle.bgcolor("gray8") 
    turtle.pendown()
    turtle.pencolor(random.choice(colors))

    i = 0 

    while True:
        i = (i + 1) % 6 
        turtle.pensize(i) 
        turtle.forward(225)
        turtle.right(170)

        if i == 0:
            turtle.pencolor(random.choice(colors))

上面的代码使用一个循环来绘制一个星形。每六次迭代后,它会改变笔的颜色。笔的大小随着每次迭代而增加,直到i重新设置为0。

  • 如何确定一个数是否为质数

在这个示例中,您将了解如何使用 Python 模运算来检查数字是否为质数。

def check_prime_number(num):
    if num < 2:
        print(f"{num} must be greater than or equal to 2 to be prime.")
        return

    factors = [(1, num)]
    i = 2

    while i * i <= num:
        if num % i == 0:
            factors.append((i, num//i))
        i += 1

    if len(factors) > 1:
        print(f"{num} is not prime. It has the following factors: {factors}")
    else:
        print(f"{num} is a prime number")

乍一看,Python 模运算可能不会引起您的注意。然而,正如您所看到的,这个不起眼的运算符有很多有价值的东西。

Tags:

最近发表
标签列表