This project, urobot, provides an environment for controlling a robot on the grid world for learning to program in Python.
Try to use helper methods to start exploring the world with your robot. For example:
from urobot.helper import *
create_world()
my_robot = Robot()
my_robot.set_pause(0.5)
my_robot.set_trace('red')
my_robot.move()
my_robot.move()
my_robot.turn_left()
my_robot.move()
Inspired by cs1robots
module from cs101 by Otfried Cheong. https://github.com/otfried/cs101