I'm wanting to assign turtle commands as such:
F = turt.forward(30)
+ = turt.left(90)
- = turt.right(90)
however it won't let me assign these commands to the + and -, I don't want this to execute the commands. I also don't know how to execute them though. I want to use these variables to then right something like "F+F-F++FF"
import turtle
f = turt.forward(30)
+ = turt.left(90)
- = turt.right(90)
F+F-F-FF+F