/
rnekrasov
/
Python
Обзор
Документация
Войти
/
rnekrasov
/
Python
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
binod.py
41 строка
1 KB
slowy07
refactor: clean code
30 янв 2022, 04:33
30 янв 2022, 04:33
f0af0c4
Код
Авторство
О чём код?
# patch-1 # import os # The OS module in python provides functions for interacting with the operating system # patch-3 # function to check if 'binod' is present in the file. # def checkBinod(file): # ======= # def checkBinod(file): #this function will check there is any 'Binod' text in file or not # with open(file, "r") as f: #we are opening file in read mode and using 'with' so need to take care of close() # ======= import time import os # Importing our Bindoer print("To Kaise Hai Ap Log!") time.sleep(1) print("Chaliye Binod Karte Hai!") def checkBinod(file): # Trying to find Binod In File Insted Of Manohar Ka Kotha # master with open(file, "r") as f: # master fileContent = f.read() if "binod" in fileContent.lower(): print(f"**************Congratulations Binod found in {f}********************") return True else: return False if __name__ == "__main__": print("************binod Detector********************") dir_contents = os.listdir() for item in dir_contents: if item.endswith("txt"): ans = checkBinod(item) if ans is False: print("Binod not found Try Looking In Manohar Ka Kotha!!")