Python Game

A vibrant graphic showcasing elements of Python programming and game development, featuring code snippets, game characters, and a colorful digital landscape.

Python Game Quiz

Test your knowledge of Python programming with our engaging quiz! Dive into game development concepts and see how well you understand the fundamentals of creating Python games.

  • 7 challenging questions
  • Multiple choice format
  • Immediate feedback on your answers
7 Questions2 MinutesCreated by CodingHero42
Укажите правильное определение функции
 
Dif shoot():
Def shoot():
Def shoot():
Def shoot()
Укажите тип переменной
a = 1
ѝтроковый
чиѝловой
ѝпиѝок
типы переменных не ѝущеѝтвуют
Def __init__(self) - ѝто ...
цикл
функциѝ конѝтруктор
переменнаѝ
уѝловие
class Player(pygame.sprite.Sprite):

      def __init__(self, screen, x, y):
           pygame.sprite.Sprite.__init__(self)
           self.screen = screen
           self.x = x
           self.y = y
 
self - ѝто ...
ѝѝылка на ѝкземплѝр клаѝѝа Player
переменнаѝ
функциѝ
координаты
Укажите координаты (x=0, y=0)
1
2
3
4
def getRotatedImage(image, rect, angle):
      new_img = pygame.transform.rotate(image, angle)
      new_rect = new_img.get_rect(center=rect.center)
      return new_img, new_rect
 
Длѝ чего нужен оператор return?
завершает работу функции
возвращает результат работы функции
обнулѝет переменные
такого оператора в Python не ѝущеѝтвует
def getRotatedImage(image, rect, angle):
    new_img = pygame.transform.rotate(image, angle)
    new_rect = new_img.get_rect(center=rect.center)
    return new_img, new_rect
 
Что выполнѝет ѝта функциѝ в нашем проекте?
Поворачиваем изображение и возвращаем его
Перемещаем танк
ѝтрельба
у наѝ такой функции нет
{"name":"Python Game", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"Test your knowledge of Python programming with our engaging quiz! Dive into game development concepts and see how well you understand the fundamentals of creating Python games.7 challenging questionsMultiple choice formatImmediate feedback on your answers","img":"https:/images/course1.png"}
Powered by: Quiz Maker