Which of the following format of files can be created programmatically through python to store some data?A. Data filesB. Text filesC.Video filesD.Binary files code example
Example: how to access a txt file through os library in python
my_file_handle=open("folder/test.txt")
my_file_handle.read()