프로젝트들[Projects]/디스코드봇(Python)[DiscordBot]
디스코드 봇 가위바위보 기능 추가[Python - 파이썬]
디스코드 봇에 간단하게 가위바위보 기능을 추가해 보았습니다. 입출력 형식은 아래와 같습니다. 입력 및 출력 코드 및 설명 global rockPaperScissors rockPaperScissors = ["가위","바위","보"] @bot.command() async def 가위바위보(ctx,*,player): botThrow = rockPaperScissors[random.randrange(0,len(rockPaperScissors))] result = resultOfRockPaperScissors(player,botThrow) if result == "에러": content = "잘못된 형식입니다. {}님 가위, 바위, 보 중 하나를 내주세요!".format(ctx.author.mention) els..
2022. 5. 28. 21:02
최근댓글