pygame创建头像
import pygame
import math
pygame.init()
screen=pygame.display.set_mode((400,600))
screen.fill((255, 255, 255))
pygame.draw.circle(screen,(255,0,0),(150,150),60)
pygame.draw.circle(screen,(0,0,0),(100,150),30)
pygame.draw.arc(screen,(0,255,0),(100,100,200,200),math.pi,math.pi*2,8)
pygame.display.flip()