파이썬 시작:모듈

1586 단어

8.1 도입 모듈

# from     import    
from datetime import datetime
datetime는 파이톤 표준 라이브러리(Standard Library)의 일원이고, from 뒤의datetime는 , import 다음의datetime는 이다.

8.2 모듈 이름 지정


때때로 모듈의 이름이 너무 길어서 코드를 읽기가 불편할 때가 있습니다. 모듈을 가져올 때 다시 이름을 붙일 수 있습니다.
from datetime import datetime as dt
now_time = dt.now()
print(now_time)

8.3 일반 라이브러리


Python 표준 라이브러리: 중국어 버전 Python 패키지 인덱스: PyPI 이하는 부분만 열거하고 자세한 내용은 위에 링크를 찍어 주십시오
"    "
import datatime  #            
import calendar  #       
import random  #      
import math  #     
import cmath  #       
import time  #         
import statistics  #     
import faker  #      ,    、  、    
import numpy
import pandas

"    "
import requests #      
import json
import re  #      

"    "
import xlwt  #   Excel

"    "
import pygame

"     "
import pygal
import pygal.maps.world

Random 모듈

import random
random.random()
#   :0.4176217805064072(  0 1        )
random.randint(1,10)
#   :3(  1 10         )
random.uniform(1.1,5.4)
#   :3.1108641423436807(  1.1 5.4        ,        )
random.choice(["A","B"])
#   :A(            )
random.randrange(1,100,2)
#   :5(   1 100    2     )

Math 모듈


Math 문서 주소:https://docs.python.org/3/library/math.html
import math
math.fabs()  #    
math.pow()  #    
math.sqrt()  #     
math.pi  #     

좋은 웹페이지 즐겨찾기