from os import * adds everything from inside the os module into your namespace. In other words, if you import os , you then use os.system() , and if you from os ...
確定! 回上一頁