Answers for "how to check if object is of file type in python3"

0

how to check if object is of file type in python3

# In python3, file objects are part of the io module.
>>> from io import IOBase
>>> f = open(<filePath>, 'w')
>>> isinstance(f, IOBase)
True
>>> isinstance(object(), IOBase)
False
Posted by: Guest on March-31-2021

Code answers related to "how to check if object is of file type in python3"

Python Answers by Framework

Browse Popular Code Answers by Language