Skip to content

linzer0/karel-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

karel-python

Привет, это порт известного всем Karel + Python = Parel

Codacy Badge

TO:DO

  • Canvas + GUI
  • Generating World from GUI
  • Karel basic functions:
    • Move command
    • Turn left
    • Put beeper
    • Pick beeper
    • If beeper present
    • If front is clear
    • Turn Right
  • Speed control

How to use?

from karel import *

karel = Robot()       #Initialization
karel.move()          #Call move function
karel.turn_left()     #Turn Left function
karel.pick_beeper()   #Take beeper 

karel.wait()          #Main window won't close after running