DEV Community

Discussion on: Pygame is not working In linux

Collapse
 
nuculabs_dev profile image
Nucu Labs

I have never used Pygame before, but could you please try passing a touple instead of a list?

screen.fill([255,255,255]) ->     screen.fill((255,255,255))
Collapse
 
raghavmri profile image
Raghav Mrituanjaya

Tried it but thanks for the reply