I have a class project which was given to me today and is due in 2 weeks. I have to make a knight from a chess board move around (just the knight, no other pieces) and I have started with this:
import math
print("This is the program for the knight's movement in chess, Press Y when you are ready to move on.")
input ("Would you like to move on?")
position=int(input("What position is your knight in?"))
print("If your knight is in the position",position,"you may move either 2 forward and 1 left, or 2 forward and 1 right, or the other way so 2 backward 1 left, or 2 backward and 1 right.")
...but I don't know how to move on. Does anybody have any advice?
I am only looking for advice not asking for answers so please don't tell me to si on it I was just stuck with one problem and couldn't find a way around it thanks for reading my problem Regards Roscomadrid