私は単にサイコロを生成するコードを作成しようとしています(Pythonで)。コードは次のとおりです。
import random
class Dice:
def _init_(self, number_dice):
self._dice = [6] * number_dice
def roll_dice(self):
for d in range(len(self._dice)):
self._dice[d] = random.randit(1, 6)
self._dice.sort()
def print_roll(self):
length = len(self._dice)
print(str(lenth) + "dice:" + str(self._dice))
my_dice = Dice(2)
my_dice.roll_dice()
my_dice.print_roll()
コンパイラは18行目について何かを言います。私はプログラミングが初めてなので、何でも役立ちます=]