Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. if good_move(scramble, lenght - 1) == False:
  2. print ("I'm here")
  3. while (good_move(scramble, lenght - 1)) != False:
  4. random = randint(0, lenght_moves)
  5. print (random)
  6. scramble.remove(lenght - 1)
  7. scramble.append(moves[random])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement