How to remove environ variable

Hi, I want to remove/delete ‘SDL_VIDEODRIVER’ variable with a python script.
Does anyone know how to do that?

Check the os.environ module in Python. I am not sure what you want exactly but be aware that it is not possible to change the environment in a permanent way: changes you make to the environment are only visibile within the program that makes the changes (and its children).

Cheers