문제

In Python,

import shutil, os

allows me to call os.environ, os.path.exists(folder), os.listdir(pool), shutil.rmtree(folder) and shutil.copyree(). It seems that I call any function, defined in those modules. Nevertheless, I cannot call ctime() once I have imported import time. I must import ctime explicitly, by

from time import ctime

Why is such inconsistency? I find it difficult to program in such unpredictability.

도움이 되었습니까?

해결책

from time import ctime allows to call ctime() directly, without time.ctime() prefix. It is me, who was inconsistent comparing fully qualified names os.listdir() with ctime() alone.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top