1.- Какую версию вы используете (pygame и python)?
2.- Вам не нужны радианы
3.- Вы должны указать проблему, которую ваше описание кажется неоднозначной
В любом случае, я оставляю пример здесь. Удачи.
import pygame
from pygame.locals import *
SIZE = 640, 480
pygame.init()
screen = pygame.display.set_mode(SIZE)
done = False
screen.fill((0, 0, 0))
other1 = pygame.image.load("enemy.png").convert_alpha()
other2 = pygame.transform.rotate(other1, 270)
screen.blit(other2, (0, 0))
pygame.display.flip()
while not done:
for e in pygame.event.get():
if e.type == QUIT or (e.type == KEYDOWN and e.key == K_ESCAPE):
done = True
break