내가 dir(os.path)
으로 IDLE 콘솔을 선택하면os.path.isfile에서 AttributeError 받기() 함수
import os
setup_exists = os.path.isfile(setup_exists)
if setup_exists is False:
print "Setup file exists"
, isfile
이 표시됩니다. 또한 IDLE에서도 문제없이이 기능을 사용할 수 있습니다.
여기에 문제가있는 IDE가 될 수 있습니까? 또한 IDE에서 스크립트를 실행 해 보았지만 여전히 오류가 발생합니다.
'print os.path'는 'C : \ Python27 \ lib \ ntpath.pyc'>'에서'
user3492006
@ user3492006 - 게시 한 AttributeError에는 아무런 의미가 없습니다. attributeError는 __ 'function'__은''isfile'' 속성이 없지만'os.path'를 출력하면 실제로'module'을 리턴한다고 말합니다. ('isfile'을 정의해야합니다). – mgilson