from blessed import Terminal
import time
term = Terminal()
for x in range(10):
for y in range(10):
print(term.move_xy(x, y) + '*')
time.sleep(0.1)