■ Random 클래스의 random 메소드를 사용해 난수를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 |
import random random1 = random.Random(1) print(random1.random()) """ 0.13436424411240122 """ |
■ Random 클래스의 random 메소드를 사용해 난수를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 |
import random random1 = random.Random(1) print(random1.random()) """ 0.13436424411240122 """ |