Answers for "python check exist"

6

how to check if file exists pyuthon

import os
file_exists = os.path.exists("example.txt") # Returns boolean representing whether or not the file exists
Posted by: Guest on September-15-2020
4

how to check if var exists python

# for local
if 'myVar' in locals():
  # myVar exists.
# for globals
if 'myVar' in globals():
  # myVar exists.
Posted by: Guest on March-26-2020
2

check if a file exists

>>> import os
>>> os.path.isfile("d:\Package1\package1\fibo.py")
True
>>> os.path.isfile("d:/Package1/package1/fibo.py")
True
>>> os.path.isfile("d:\nonexisting.txt")
Posted by: Guest on August-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language