从 livewires.games.Text 对象获取值
get value from livewires.games.Text object
我有一个名为 score 的 livewires.games.Text
对象,我正试图从中获取值。我已经尝试将它转换为一个 doing scores = str(self.scores)
甚至一个 for 循环:
scores = str(self.score)
for item in scores:
print(item)
我得到的只是 <livewires.games.Text object at 0x1017aca58>
我正在尝试将分数转换为 int()
,以便我可以使用它来升级我正在开发的游戏。
有没有人以前用过 livewires 有没有办法把 <livewires.games.Text object at 0x1017aca58>
变成 int()
?
我所要做的就是:
score = self.score.value
if score % 100 == 0:
self.level += 1
games.screen.add(self.level_msg)
我有一个名为 score 的 livewires.games.Text
对象,我正试图从中获取值。我已经尝试将它转换为一个 doing scores = str(self.scores)
甚至一个 for 循环:
scores = str(self.score)
for item in scores:
print(item)
我得到的只是 <livewires.games.Text object at 0x1017aca58>
我正在尝试将分数转换为 int()
,以便我可以使用它来升级我正在开发的游戏。
有没有人以前用过 livewires 有没有办法把 <livewires.games.Text object at 0x1017aca58>
变成 int()
?
我所要做的就是:
score = self.score.value
if score % 100 == 0:
self.level += 1
games.screen.add(self.level_msg)