So I’m new with pygame and I was wondering how do you make a basic text box
I know you have to create a window as so:
import pygame, sys
pygame.init()
screen= pygame.display.set_mode([800,600])
pygame.display.flip
but then I have no idea where to go from there
any help much appreciated :)