Introduction
Write a Python program to check whether a file exists. I have used python 3.7 compiler for debugging purpose.
import os.path open('tech.txt', 'w') print(os.path.isfile('tech.txt'))
Write a Python program to check whether a file exists. I have used python 3.7 compiler for debugging purpose.
import os.path open('tech.txt', 'w') print(os.path.isfile('tech.txt'))