閒話少說,我們直接開始吧。 :)
建立一個程式,生成虛假資料,如姓名、電子郵件或包含個人所有資訊的詳細虛假個人資料。
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())
輸出如下:
實現一個程式將給定文字轉換為手寫筆記形式
為了完成上述功能,需要第三方程式包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檔案目錄下。
實現一個程式來將電腦自動關機
實現上述功能需要用到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')
注意事項如下:
執行此程式之前,請確保儲存並關閉所有檔案。執行此程式會導致計算機關閉後,未儲存的資料可能會丟失。
實現列印指定月份和年份日曆的程式
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))
執行結果如下:
實現在餅圖中用百分比表示每月費用的程式
在下述程式中,我們使用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()
執行結果如下:
實現一個程式來顯示帶有訊息的告警框效果
下述程式使用第三方庫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}')
輸出如下:
實現一個程式來將文字轉化為語音
為了實現將文字轉化為音訊,需要使用pip install pyttsx3
來安裝一個轉換庫。這個庫有很多模組,我們還可以嘗試改變音訊的聲音、音量和速度。
樣例程式碼如下:
import pyttsx3 engine = pyttsx3.init() engine.say('This is a python example in MEDIUM') engine.runAndWait()
上述程式碼執行後,輸出是一個女性聲音,將對應的文字轉化為音訊播放。
實現一個python程式,來實現擷取螢幕截圖的功能
如下程式碼所示,我們使用python庫pyautogui
來實現截圖功能。程式碼如下:
import pyautogui screenshot = pyautogui.screenshot() screenshot.save("screenshot.png")
上述程式碼執行後,輸出檔案截圖儲存在 python 原始檔目錄下。我們可以嘗試使用 time.sleep()
語法來延遲螢幕截圖。
實現一個python程式,用來檢測網際網路上傳和下載速度
在下述程式中,為了監測網際網路速度,我們使用了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}')
執行結果如下:
實現一個程式,使用turtle 製作螺旋圖形
在下述程式中,我們使用 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模組,看看他們的功能吧!的詳細內容,更多請關注TW511.COM其它相關文章!