I am writing a code for flappy bird and I was watching a tutorial on collision and they used:
from pygame.locals import *
Why don't they just use:
from pygame import local
What is the difference and how does it change the code? Does it import all of that library or just a specific bit. As I thought you would just use import pygame for that?