Report Bug
Qus : Which of the following statements is used to check if a file exists in Python?
Qusनिम्नलिखित में से किस फंक्शन का उपयोग यह जांचने के लिए किया जाता है कि कोई फ़ाइल पायथन में मौजूद है या नहीं?

A. file_exists()
B. exists_file()
C. os.path.exists()
D. check_file()


Solution
C. os.path.exists()






Report Bug