Home / Questions / Other Path का existence check कैसे करें? Other 0 Views Verified Path का existence check कैसे करें? #python #python programming #coding #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Path('data.txt').is_exists() Path('data.txt').is_exists() Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer Path('data.txt').exists() Path('data.txt').exists() Additional Explanation Path.exists() path मौजूद है या नहीं बताता है।
Verified Path.exists('data.txt') Path.exists('data.txt') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified exists(Path,'data.txt') exists(Path,'data.txt') Additional Explanation यह विकल्प सही समाधान नहीं है।