I get this message when trying to import os while using Pyzo 4.10.2 :
ValueError: source code string cannot contain null bytes
Here is the code I tried :
from os import *
os.mkdir('Repertoire_test')
I also tried import os
previously.
When I try it in python directly (the black background interpreter) it works though, as i can see the folder in my hard drive :
Warning:
This Python interpreter is in a conda environment, but the environment has
not been activated. Libraries may fail to load. To activate this environment
please see https://conda.io/activation
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.mkdir('Rpertoire_test')
>>>
Thanks you