# Python file detection
import os
file_path = "test.txt"
if os.path.exists(file_path):
print(f"The location '{file_path}' exists")
if os.path.isfile(file_path):
print("That is a file")
elif os.path.isdir(file_path):
print("That is a directory")
else:
print("That location doesn't exist")
#pythontutorial #python #pythonprogramming
Continue this lesson in the app
Install CourseHive on Android or iOS to keep learning while you move.