파이썬 모듈
파일에서 모듈을 사용하려면 다음과 같이 구문이 해당 파일의 맨 위에 있어야 합니다.
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.
Reference
이 문제에 관하여(파이썬 모듈), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kster/python-modules-1lgb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)