I am writing a code in python for school and I am not very advanced with python, my whole code is a turtle-drawn board game. I want to-when a turtle reaches the last space- make a turtle (A) write , bname,"Has Won!" where bname is a user input str variable. However, this line of code:
A.write(bname,"HAS WON!!!", move=False, align="left", font=("Arial", 40, "normal"))
keeps getting an error:
A.write(bname,"HAS WON!!!", move=False, align="left", font=("Arial", 40, "normal"))
TypeError: write() got multiple values for argument 'move'
Anyone know how to solve this, I don't know what to do! This is turtle by the way ;-)