Python | 13 | 簡単なゲームを作成

ランキング参加中プログラミング [TOP] 次>> 次のプログラムを作ってみましょう。 【saikoro1.py】 # saikoro1.py import random def throwDices(score): me1 = random.randint(0,5) me2 = random.randint(0,5) showDices( me1, me2 ) score = checkPoints( me1, me2, score ) return score def showDices( a, b ): diceSt…