상세 컨텐츠

본문 제목

모듈 사용하기

Programming/Python

by 쌩우 2019. 7. 21. 20:39

본문

import 'module'

모듈을 사용할 땐, import 모듈명과 같은 방식으로 가능하다.

math

이름 그대로 math, 수학과 관련된 모듈이다.

  • math.pi => 원주율 값을 나타낸다
  • math.ceil(number) => number를 올림시킨다
  • math.floor(number) => number를 내림시킨다

random

무작위와 관련된 기능을 쓸 수 있다.

  • random.choice(list) => list 내에서 임의의 값을 선택해준다

urllib.request

웹 사이트의 내용을 가져오는 기능을 쓸 수 있다.

def get_web(url):
    """URL을 넣으면 페이지의 내용을 돌려주는 함수"""
    import urllib.request
    response = urllib.request.urlopen(url)
    data = response.read()
    decoded = data.decode('urf-8')
    return decoded

url = input('원하는 사이트의 주소를 입력해주세요')  
content = get_web(url)
print(content)

'Programming > Python' 카테고리의 다른 글

자료구조 - dictionary  (0) 2019.07.21
모듈 만들기  (0) 2019.07.21
for 반복문  (0) 2019.07.21
자료구조 - 리스트(list)  (0) 2019.07.21
input으로 사용자 입력 받기  (0) 2019.07.21

관련글 더보기

댓글 영역