We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf5435 commit 1180ee5Copy full SHA for 1180ee5
binod.py
@@ -0,0 +1,21 @@
1
+import os
2
+
3
4
+def checkBinod(file):
5
+ with open(file, "r") as f:
6
+ fileContent = f.read()
7
+ if 'binod' in fileContent.lower():
8
+ print(
9
+ f'**************Congratulations Binod found in {f}********************')
10
+ return True
11
12
13
+if __name__ == '__main__':
14
+ ans = False
15
+ print("************binod Detector********************")
16
+ dir_contents = os.listdir()
17
+ for item in dir_contents:
18
+ if item.endswith('txt'):
19
+ ans = checkBinod(item)
20
+ if(ans is False):
21
+ print('Binod not found!')
binod.txt
@@ -0,0 +1 @@
+I am binod
0 commit comments