Guest User

Untitled

a guest
Aug 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import sys
  2. playercords = [10, 10]
  3. for a in range(10):
  4. for b in range(20):
  5. if(playercords[0] == a and playercords[1] == b):
  6. sys.stdout.write("A")
  7. else:
  8. sys.stdout.write("#")
  9. print("")
  10.  
  11. ####################
  12. ####################
  13. ####################
  14. ####################
  15. ####################
  16. ####################
  17. ####################
  18. ####################
  19. ####################
  20. ####################
Add Comment
Please, Sign In to add comment