forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinod.py
41 lines (34 loc) · 1.2 KB
/
binod.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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!!")