首页 > 后端开发 > Python教程 > 任务-Python 包

任务-Python 包

Mary-Kate Olsen
发布: 2024-12-09 19:48:12
原创
309 人浏览过

几个 Python 包

进度条和 TQDM:
为循环、文件处理或下载等任务实现进度条。

from progress.bar import ChargingBar
bar = ChargingBar('Processing', max=20)
for i in range(20):
    # Do some work
    bar.next()
bar.finish()
登录后复制

输出:

Processing ████████████████████████████████ 100%
登录后复制

TQDM:与进度条类似,但设置比进度条更简单。

from tqdm import tqdm
import time

for i in tqdm(range(100)):
    time.sleep(0.1)
登录后复制

输出:

100%|██████████████████████████████████████| 100/100 [00:00<00:00, 18784.11it/s]
登录后复制

Matplotlib:

Matplotlib 用于创建静态、动画和交互式可视化。

import matplotlib.pyplot as plt

x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]

plt.plot(x, y, label='Linear Growth', color='blue', linestyle='--', marker='o')
plt.title("Line Plot Example")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
plt.legend()
plt.show()
登录后复制

输出:

Task-Python Packages

Numpy:
NumPy(数值 Python)是用于数值计算的基本 Python 库。它支持处理大型多维数组(如一维、二维、三维)和矩阵,以及一组数学函数以有效地对这些数组进行操作。

示例:

import numpy as np

# 1D array
arr1 = np.array([1, 2, 3, 4])

# 2D array
arr2 = np.array([[1, 2], [3, 4]])

print(arr1, arr2)
登录后复制

输出:

[1 2 3 4] [[1 2]
 [3 4]]

登录后复制

熊猫:
它用于使用 Series(列表)和 DataFrame(表格或电子表格)进行数据操作和分析。

示例:

import pandas
x=[1,2,3]
y=pandas.Series(x,index=["no1","no2","no3"])
print(y)
登录后复制

输出:

no1    1
no2    2
no3    3
dtype: int64
登录后复制

以上是任务-Python 包的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板