파이썬 모듈

모듈은 도구로 광범위하게 사용하기 위한 Python 선언 모음입니다. 모듈은 "패키지"또는 "라이브러리"라고도 합니다.

파일에서 모듈을 사용하려면 다음과 같이 구문이 해당 파일의 맨 위에 있어야 합니다.

from module_name import object_name 


'datetime'은 Python 표준 라이브러리의 일부로 제공되는 라이브러리입니다. 'datetime'은 파이썬에서 날짜와 시간으로 작업할 수 있도록 도와줍니다.
'datetime' 모듈을 가져와서 'datetime'을 사용해 봅시다.

from datetime import datetime

time_now = datetime.now

print(time_now)


이것은 날짜와 시간의 조합을 출력합니다.
속성 연도, 월, 일, 시, 분, 초, 마이크로초.

예시:


2022-09-25 01:34:55.601239


쿨러 모듈을 사용해 봅시다. Wikipedia는 Wikipedia의 데이터에 쉽게 액세스하고 구문 분석할 수 있는 Python 라이브러리입니다.

import wikipedia

print(wikipedia.summary("python (programming language)"))


산출

Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.Python is dynamically-typed and garbage-collected. It supports multiple programming paradigms, including structured (particularly procedural), object-oriented and functional programming. It is often described as a "batteries included" language due to its comprehensive standard library.Guido van Rossum began working on Python in the late 1980s as a successor to the ABC programming language and first released it in 1991 as Python 0.9.0. Python 2.0 was released in 2000 and introduced new features such as list comprehensions, cycle-detecting garbage collection, reference counting, and Unicode support. Python 3.0, released in 2008, was a major revision that is not completely backward-compatible with earlier versions. Python 2 was discontinued with version 2.7.18 in 2020.Python consistently ranks as one of the most popular programming languages.

좋은 웹페이지 즐겨찾기