Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. def get(self):
  2. self.response.headers['Content-Type'] = 'text/plain'
  3. for row in board:
  4. for col in row:
  5. self.response.out.write(col)
  6. self.response.out.write("\n")
  7.  
  8. output:
  9. 2
  10. 1
  11. 3
  12. 4
  13. 1
  14. .
  15. 7
  16. 8
  17. 5
  18. 10
  19. 11
  20. 12
  21. 9
  22. 13
  23. 14
  24. 15
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement