[Python] 조건문 연습2Study Code/[Basic] Python2024. 5. 9. 00:39
Table of Contents
난수를 이용해서 가위, 바위, 보 게임 |
import random
comNum = random.randint(1, 3)
userNum = int(input('1. 가위 | 2. 바위 | 3. 보 (숫자입력) >>> '))
if ((comNum == 1 and userNum == 2) or
(comNum == 2 and userNum == 3) or
(comNum == 3 and userNum == 1)):
print('컴퓨터는 {}번! '.format(comNum), end='')
print('컴퓨터 패!')
elif comNum == userNum:
print('컴퓨터는 {}번! '.format(comNum), end='')
print('무승부!!')
else:
print('컴퓨터는 {}번! '.format(comNum), end='')
print('컴퓨터 승!')
* 이 글은 제로베이스 데이터 스쿨의 강의 자료 일부를 발췌하여 작성되었습니다.
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!