当前位置: 欣欣网 > 码农

6个有趣实用Python实例

2024-05-21码农

「1.Python生成器(Faker库)」

  • 简介:使用Faker库生成假数据,如姓名、邮箱等。

  • from faker import Faker
    #创建一个Faker对象,并设置语言为中文
    fake = Faker('zh_CN')
    print(fake.name())
    print(fake.address())
    print(fake.company())

    「2.关闭计算机」

  • 简介:使用os模块执行系统命令关闭计算机。

  • import os
    shutdown = input("Do you want to shutdown your computer (yes / no): ")
    if shutdown.lower() == 'yes':
    os.system("shutdown /s /t 1")

    「3.打印日历」

  • 简介:使用内置的calendar模块打印特定月份的日历。

  • import calendar
    year = 2024
    month = 5
    print(calendar.month(year, month))

    「4.使用Python的警报框(pyautogui库)」

  • 简介:使用pyautogui库创建一个警报框。

  • import pyautogui
    pyautogui.alert('This is a simple alert box.')

    「5.截屏」

  • 简介:使用pyautogui库进行屏幕截图。

  • import pyautogui
    screenshot = pyautogui.screenshot()
    screenshot.save('screenshot.png')

    「6.Python画螺旋图」
    - 简介:使用Python的Turtle模块绘制螺旋图。

    import turtle
    t = turtle.Turtle()
    for i in range(100):
    t.forward(i * 10)
    t.right(90)
    turtle.done()