randrange1 주사위 던지기 따라하기 (Coding Throwing Double Dice) 주사위 던지기 따라하기 (Coding Throwing Double Dice) 이번에는 주사위 던지기 코드를 따라 해 보겠습니다. 파일은 ThrowingDoubleDice.py로 만들어 봤습니다. ThrowingDoubleDice.py 컴퓨터에게 2개의 주사위를 던지게 시키는 코드입니다. import random Computer = random.choice(["던집니다","던지지 않습니다"]) while "던집니다" == Computer: print ("주사위를 던집니다.") print ("각 주사위의 값은....") print (random.randrange(1,7)) print (random.randrange(1,7)) break 1행에서 랜덤 패키지를 읽어옵니다. 2행에서 random.choice로 .. 2020. 11. 20. 이전 1 다음 반응형