(file)
| 20 | |
| 21 | |
| 22 | def checkBinod(file): # Trying to find Binod In File Insted Of Manohar Ka Kotha |
| 23 | # master |
| 24 | with open(file, "r") as f: |
| 25 | # master |
| 26 | fileContent = f.read() |
| 27 | if "binod" in fileContent.lower(): |
| 28 | print(f"**************Congratulations Binod found in {f}********************") |
| 29 | return True |
| 30 | else: |
| 31 | return False |
| 32 | |
| 33 | |
| 34 | if __name__ == "__main__": |