Py의utils:Python 라이브러리의utils에 대한 소개, 설치, 사용 방법에 대한 상세한 공략

1054 단어
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')

 
 
 
 
 

좋은 웹페이지 즐겨찾기