当前位置: 首页 > 工具软件 > py2deb > 使用案例 >

Py之utils:Python库之utils的简介、安装、使用方法之详细攻略

史意致
2023-12-01

Py之utils:Python库之utils的简介、安装、使用方法之详细攻略

 

 

 

目录

utils的简介

utils的安装

utils的使用方法


 

 

 

utils的简介

      Python Utils is a collection of small Python functions and classes which make common patterns shorter and easier. It is by no means a complete collection but it has served me quite a bit in the past and I will keep extending it.
      python utils是一个小型python函数和类的集合,这些函数和类使公共模式变得更短、更容易。它绝不是一个完整的收藏,但它在过去为我服务了不少,我会继续扩展它。

文档https://python-utils.readthedocs.io/en/latest/

 

 

utils的安装

pip install python-utils

 

 

utils的使用方法

1、基础用法

from python_utils import converters

number = converters.to_int('spam15eggs')
assert number == 15

number = converters.to_int('spam')
assert number == 0

number = converters.to_int('spam', default=1)
assert number == 1

number = converters.to_float('spam1.234')

 

 

 

 

 

 

 类似资料: