# 파이썬 수학

이 주제에서는 파이썬에서 지원하는 수학적 연산에 대해 알아봅니다.

Python은 삼각함수, 로그, 확률, 통계 등과 관련된 수학적 연산을 수행할 수 있는 수학 및 랜덤과 같은 모듈을 제공합니다.

# 파이썬 수학 모듈

다음 예제는 수학 모듈을 보여줍니다:

import math

# Output: 3.141592653589793
print(math.radians(180))

# Output: 25.0
print(math.sqrt(625))

# Output: 3.141592653589793
print(math.pi)

# Output: -1.0
print(math.cos(math.pi))

# Output: 22026.465794806718
print(math.exp(10))

# Output: 3.0
print(math.log10(1000))

# Output: 1.1752011936438014
print(math.sinh(1))

# Output: 5040
print(math.factorial(7))

# Output: 512.0
print(math.pow(8, 3))

# 파이썬 랜덤 모듈

다음 예제는 랜덤 모듈을 보여줍니다:

import random

# Gives a number between 20 and 30
print(random.randrange(20,30))

x = ['a', 'b', 'c', 'd', 'e', 'f']

# Get random choice
print(random.choice(x))

# Shuffle x
random.shuffle(x)

# Print the shuffled x
print(x)

# Print random element
print(random.random())

출력:

25
f
['e', 'c', 'd', 'b', 'f', 'a']
0.02147812541872285