Guest User

Untitled

a guest
Oct 20th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. self._field=[]
  2. for i in range(8):
  3. block = []
  4. for j in range(8):
  5. block.append('X')
  6. self._field.append(block)
  7.  
  8. self._field = [['X']*8]*8
Add Comment
Please, Sign In to add comment