Я написал код но все время выдает ошибку.
Код:
import pygame
pygame.init()
size = (250,500)
screen = pygame.display.set_mode(size)
pygame.display.set_caption("Змуйка")
img = pygame.image.load("1zmeya.png")
pygame.display.set_icon(img)
font = pygame.font.SysFont('comicsansms'(32))
RED = (255,0,0)
GREEN = (0,255,0)
follow = font.render("Привет мир!",1,RED,GREEN)
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
quit()
screen.blit(follow, (0,0))
pygame.display.update()
---------------------------------------------
Ошибка:
Traceback (most recent call last):
File "C:/Users/****/Новая папка/1112.py", line 9, in
font = pygame.font.SysFont('comicsansms'(32))
TypeError: 'str' object is not callable
(Заранее спасибо!)