Python으로 주사위 굴리기 시뮬레이터 만들기

Najwa Riyaz 2021년7월18일
Python으로 주사위 굴리기 시뮬레이터 만들기

파이썬에서 주사위 굴리기 시뮬레이터를 만들려면random.randint()함수를 사용하여 다음과 같이 숫자 1에서 6 사이의 난수를 생성합니다.

random.randint(1, 6)

random.randint (1,6)를 사용하여 Python에서 주사위 굴리기 시뮬레이터 만들기

random.randint()함수를 사용하여 Python에서 주사위 굴림 시뮬레이터를 만들 수 있습니다. 함수의 구문은 다음과 같습니다.

random.randint(x, y)

따라서xy사이의 임의의 정수를 생성합니다. 주사위 시뮬레이터 예제에서

x는 1이고 y는 6입니다.

아래는 예입니다.

import random

print("You rolled the following number", random.randint(1, 6))

사용자가 주사위를 계속 굴릴 지 여부를 선택할 수 있도록 다음과 같이while루프 내에random.randint(1,6)를 배치 할 수 있습니다.

from random import randint

repeat_rolling = True
while repeat_rolling:
    print("You rolled the following number using the Dice -", randint(1, 6))
    print("Do you wish to roll the dice again?")
    repeat_rolling = ("y" or "yes") in input().lower()

사용자가 주사위 굴리기 중지를 선택하면while루프를 종료해야합니다.

출력:

You rolled the following number using the Dice - 2
Do you wish to roll the dice again?
y
You rolled the following number using the Dice - 4
Do you wish to roll the dice again?
y
You rolled the following number using the Dice - 5
Do you wish to roll the dice again?
n

관련 문장 - Python Number