There are different files in a folder, I would like to print files which are ended with IHDRT.exr. The correct answer for this job is as shown bellow:
    #!/usr/bin/env python
    import glob
    for file in glob.glob("*.exr"):
        if file.endswith('iHDRT.exr'):
            print(file)
 
     
    