Предмет: Информатика, автор: renashusnullin3

я пишу игру на языке питон и мне выдает ошибку вот код и ошибка
import pygame

pygame.init()
win = pygame.display.set_mode((1000, 600))

pygame.display.set_caption("Cubes Game")

x = 50
y = 500
width = 40
height = 60
speed = 5

isJump = False
jumpCount = 10

run = True
while run:
pygame.time.delay(50)

for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
keys = pygame.key.get_pressed()
if keys[pygame.K_LEFT] and x > 5:
x -= speed
if keys[pygame.K_RIGHT] and x < 1000 - width - 5:
x += speed
if not(isJump):
if keys[pygame.K_UP] and y > 5:
y -= speed
if keys[pygame.K_DOWN] and y < 600 - height - 5:
y += speed
if keys[pygame.K_SPACE]:
isJump = True
else:
if jumpCount >= -10:
if jumpCount < 0:
y += (jumpCount ** 2) / 2
else:
y -= (jumpCount ** 2) / 2
jumpCount -= 1
else:
isJump = False
jumpCount = 10
win.fill((0,0,0))
pygame.draw.rect(win, (0,0,255), (x, y, width ,height))
pygame.display.update()
pygame.quit()
вот ошибка
File "C:\python\game.py", line 41
y -= (jumpCount ** 2)
^
TabError: inconsistent use of tabs and spaces in indentation помогите

Ответы

Автор ответа: Hantagu
1

С отступом проблема, добавь отступ перед y= -= (jumpCount ** 2)

Похожие вопросы
Предмет: Математика, автор: mariamoskova593
Предмет: Литература, автор: 262242