Answers for "check if array exist python"

81

python check if file exists

import os

os.path.exists("file.txt") # Or folder, will return true or false
Posted by: Guest on February-14-2020
2

python check array exists

array = [1,2,3,4]
exists_2 = 2 in array
print(exists_2) # True
exists_5 = 5 in array
print(exists_5) # False
Posted by: Guest on January-29-2021

Code answers related to "check if array exist python"

Python Answers by Framework

Browse Popular Code Answers by Language