概述
Python程序有有许多有助于高效编程的模块和第三方包,了解这些模块的正确使用方法是很重要的,下面本篇文章就来给大家总结分享10个有趣且实用的Python模块,一起看看他们的功能吧!
闲话少说,我们直接开始吧。 :)
1.Python伪信息生成器
Faker是一个python软件包,可以在终端中使用pip install Faker
安装。每次运行以下程序faker generator时,都将产生不同的随机数据。
from faker import Faker
fake = Faker()
print(fake.name())
print(fake.email())
print(fake.country())
print(fake.profile())
登录后复制
输出如下:
2.手写文本图像
为了完成上述功能,需要第三方程序包pywhatkit,可以使用pip install pywhatkit
进行安装。这个软件包有很多其他功能,比如在谷歌上搜索等。
样例代码如下:
import pywhatkit
pywhatkit.text_to_handwriting('''Learning Python from the basics is extremely important. Before starting to learn python,understanding a base language like c is a must and some of the oops concepts.Python program has many modulesand packages, which helps with efficient programming.
Understanding these modules and 1proper usage of many syntax and libraries is recommended.
In this article, a few modules and packages are used in the program.
Python includes tons of libraries and some of them are quiet intresting''')
登录后复制
输出如下:
输出以图像文件形式保存在当前python文件目录下。
3.实现电脑关机
实现上述功能需要用到OS库,可以使用pip install os
进行安装。我们可以使用该库来实现关闭,重启,或者设置关闭重启倒计时等功能。
样例代码如下:
import os
shutdown = input("Do you want to shutdown your computer (yes / no): ")
if shutdown == 'yes':
os.system("shutdown /s /t 1")
else:
print('Shutdown is not requested')
登录后复制
注意事项如下:
4.打印日历
Python中有一个内置模块calendar
,它可以帮助访问日历。在这个模块中有很多方法,在下述程序中,我们试图打印一年中指定月份的日历。
import calendar
year =int( input("Enter the year of the required calendar "))
month = int( input("Enter the month of the required calendar "))
print(calendar.month(year,month))
登录后复制
运行结果如下:
5.画一个饼图
在下述程序中,我们使用matplotlib来画饼图。可以使用pip install matplotlib
安装此库。有了这个模块,可以用python编写许多交互式视觉效果。
样例代码如下:
import matplotlib.pyplot as plt
Partition = 'Holidays', 'Eating_Out', 'Shopping', 'Groceries'
sizes = [250, 100, 300, 200]
fig1, ax1 = plt.subplots()
ax1.pie(sizes, labels=Partition, autopct='%1.1f%%', shadow=True, startangle=90)
ax1.axis('equal')
plt.show()
登录后复制
运行结果如下:
6.弹出告警框
下述程序使用第三方库pyautogui
来显示告警框。通常来说,可以使用pip install pyautogui
来安装它。这个模块有很多方法,比如使用python程序来控制鼠标和键盘。
样例代码如下:
import pyautogui
num=int(input("Enter a value to divide 100"))
if num == 0:
pyautogui.alert(" Alert!!! 100 cannot be divided by 0")
else:
print(f'The value is {100/num}')
登录后复制
输出如下:
7.文本转语音
为了实现将文本转化为音频,需要使用pip install pyttsx3
来安装一个转换库。这个库有很多模块,我们还可以尝试改变音频的声音、音量和速度。
样例代码如下:
import pyttsx3
engine = pyttsx3.init()
engine.say('This is a python example in MEDIUM')
engine.runAndWait()
登录后复制
上述代码运行后,输出是一个女性声音,将对应的文字转化为音频播放。
8.截图
如下代码所示,我们使用python库pyautogui
来实现截屏功能。代码如下:
import pyautogui
screenshot = pyautogui.screenshot()
screenshot.save("screenshot.png")
登录后复制
上述代码运行后,输出文件截图保存在 python 源文件目录下。我们可以尝试使用 time.sleep()
语法来延迟屏幕截图。
9.网络监测
在下述程序中,为了监测互联网速度,我们使用了speedtest
库,要安装此第三方库,可以使用 pip install speedtest-cli
语法进行安装。
代码如下:
import speedtest
speed = speedtest.Speedtest()
download_speed = speed.download()
upload_speed = speed.upload()
print(f'The download speed is {download_speed}')
print(f'The uplaod speed is {upload_speed}')
登录后复制
运行结果如下:
10.用 Python 绘制图形
在下述程序中,我们使用 Python中的Turtle
绘制了一个螺旋图。要安装该库,可以使用pip install PythonTurtle
。 Python Turtle
主要用于绘制视觉图形,以及图形的形状颜色设置。
样例代码如下:
import random
import turtle
colors = ['red','cyan','pink' ,'yellow', 'green','orange']
t = turtle.Turtle()
t.speed(10)
turtle.bgcolor("black")
length=100
angle =50
size=5
for i in range(length):
color=random.choice(colors)
t.pencolor(color)
t.fillcolor(color)
t.penup()
t.forward(i+50)
t.pendown()
t.left(angle)
t.begin_fill()
t.circle(size)
t.end_fill()
turtle.exitonclick()
turtle.bgcolor("black")
登录后复制
运行结果如下:
总结
本文重点汇总了使用Python中的第三方库来实现常见场景下的一些简单有趣的功能,并给出了样例程序和相应的解释。
【相关推荐:Python3视频教程 】
以上就是分享10个有趣且实用的Python模块,看看他们的功能吧!的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是天真咖啡为你收集整理的分享10个有趣且实用的Python模块,看看他们的功能吧!的全部内容,希望文章能够帮你解决分享10个有趣且实用的Python模块,看看他们的功能吧!所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复