math 모듈 사용하기(1)

한지완·2023년 10월 3일
0

파이썬

목록 보기
9/14

math 모듈이란?

ㄴ> math 모듈(module)이란, 단순 python 연산을 넘어 조금 더 복잡한 산술 연산이 필요할 때 사용하는 module이다.

사용방법

import math를 사용하면 사용이 가능하다.

CONSTANT

math.pi

원주율 파이로 3.141592653589793이다.

math.e

**자연 상수 e로, 2.718281828459045이다.

math.tau

타우함수로 6.283185307179586이다.

METHOD

함수설명예시
math.pi원주율1
math.e자연상수2
abs()절댓값 계산 (내장함수)3
round()반올림 계산 (내장함수)4
math.trunc()버림 함수5
math.factorial()팩토리얼 계산6
math.cos()코사인 값 계산7
math.sin()사인 값 계산8
math.tan()탄젠트 값 계산9
math.acos()코사인 값 역계산10
math.asin()사인 값 역계산11
math.atan()탄젠트 값 역계산12
math.pow()제곱 연산13
math.squrt()제곱근 연산14
math.log()로그 값 계산15

CODE

  1. math.pi

  2. math.e

  3. abs()

abs(-99)
#99
  1. round()
round(99)
#100
  1. math.trunc()
math.trunc(-3.14)
# -3
math.floor(-3.14)
# -4
  1. math.factorial()
math.factorial(5)
  1. math.cos()
math.log(10, 10)
  1. math.sin()
?
  1. math.tan()
?
  1. math.acos()
?
  1. math.asin()
?
  1. math.atan()
?
  1. math.pow()
math.pow(3, 2)
# 9
  1. math.sqrt()
math.sqrt(25)
# 5.0
  1. math.log()
math.log(10, 10)
# 1
profile
프로그래머를 꿈꾸는 중

0개의 댓글