mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Use whrandom instead of rand.
Run 500 steps instead of forever.
This commit is contained in:
parent
15527e98cd
commit
29892d848c
1 changed files with 5 additions and 5 deletions
|
@ -41,19 +41,19 @@ class Electrons:
|
|||
self.tk.update()
|
||||
|
||||
def random_move(self,n):
|
||||
import whrandom
|
||||
c = self.canvas
|
||||
for i in range(1,n+1):
|
||||
p = self.pieces[i]
|
||||
c = self.canvas
|
||||
import rand
|
||||
x = rand.choice(range(-2,4))
|
||||
y = rand.choice(range(-3,4))
|
||||
x = whrandom.choice(range(-2,4))
|
||||
y = whrandom.choice(range(-3,4))
|
||||
c.move(p, x, y)
|
||||
self.tk.update()
|
||||
|
||||
# Run -- never returns
|
||||
def run(self):
|
||||
try:
|
||||
while 1:
|
||||
for i in range(500):
|
||||
self.random_move(self.n)
|
||||
except TclError:
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue