извините, что беспокою кого-либо, но когда я запускаю свой код (моя первая попытка в реальной игре), все работает нормально, но после того, как я закрываю его, печатаются некоторые ошибки, и я не могу найти кого-то еще с моей проблемой.Мои файлы называются Space Invaders.py, я использую Pycharm (эти ошибки также происходят с IDLE).Это мой код:
import turtle
import math
print("------------Space Invaders - Python------------")
print("-------------GAME NOT YET COMPLETED------------")
print("This console is simply a status readout.")
wn = turtle.Screen()
wn.bgcolor("black")
wn.title("Space Invaders")
borderPen = turtle.Turtle()
borderPen.speed(0)
borderPen.color("white")
borderPen.penup()
borderPen.setposition(-400, -400)
borderPen.pendown()
borderPen.pensize(3)
for i in range(4):
borderPen.fd(800)
borderPen.lt(90)
borderPen.hideturtle()
player = turtle.Turtle()
player.setheading(90)
player.shape("triangle")
player.color("blue")
player.penup()
player.speed(0)
player.setposition(0, -350)
enemy = turtle.Turtle()
enemy.color("red")
enemy.shape("circle")
enemy.penup()
enemy.speed(0)
enemy.setposition(-300, 250)
movementStepE = 2
movementStepEY = -15
movementStepP = 5
def move_left():
x = player.xcor()
new_x = x - movementStepP
if new_x < -380:
new_x = -380
player.setx(new_x)
def move_right():
x = player.xcor()
new_x = x + movementStepP
if new_x > 380:
new_x = 380
player.setx(new_x)
def distancepyth(x1, x2, y1, y2):
pyth = math.sqrt((x1 - x2) ** 2) + (y1 - y2 ** 2)
return(pyth)
turtle.listen()
turtle.onkeypress(move_left, "Left")
turtle.onkeypress(move_right, "Right")
new_y = 250 # 250
while True:
x = enemy.xcor()
y = enemy.ycor()
new_x = x + movementStepE
if new_x > 380:
movementStepE = movementStepE * -1
new_y = y + movementStepEY
new_x = 380
elif new_x < -380:
movementStepE = movementStepE * -1
new_y = y + movementStepEY
new_x = -380
enemy.setposition(new_x, new_y)
turtle.done()
print("-------PROGRAM TERMINATED INTENTIONALLY-------")
и это ошибки:
Traceback (most recent call last):
File "C:/Users/Noname Antilabelson/PycharmProjects/Space Invaders Game/Code/Space Invaders.py", line 97, in <module>
enemy.setposition(new_x, new_y)
File "C:\Users\Noname Antilabelson\AppData\Local\Programs\Python\Python37\lib\turtle.py", line 1776, in goto
self._goto(Vec2D(x, y))
File "C:\Users\Noname Antilabelson\AppData\Local\Programs\Python\Python37\lib\turtle.py", line 3158, in _goto
screen._pointlist(self.currentLineItem),
File "C:\Users\Noname Antilabelson\AppData\Local\Programs\Python\Python37\lib\turtle.py", line 755, in _pointlist
cl = self.cv.coords(item)
File "<string>", line 1, in coords
File "C:\Users\Noname Antilabelson\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 2469, in coords
self.tk.call((self._w, 'coords') + args))]
_tkinter.TclError: invalid command name ".!canvas"
Извините, если я сделал что-то глупое, ваша помощь будет принята с благодарностью!С уважением, Джейкоб Саттон