Make Karel move forward 10 times.
Karel does not know how to turn right natively. Instead of writing turnLeft(); three times throughout your code, define a single function to save space and reduce errors: javascript codehs all answers karel top
def start(): build_tower() move() move() build_tower() Make Karel move forward 10 times