Skip to content

Commit f503fd6

Browse files
authored
Merge pull request #900 from vikasmohann/patch-1
Create divisibility by 7.py
2 parents 953e982 + f10d47c commit f503fd6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Python/divisibility by 7.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
digit = int(input("Enter your number:-"))
2+
rem = digit%7
3+
if (rem==0 ):
4+
print("it is divisble by 7")
5+
else:
6+
print("Cannot be determined ")

0 commit comments

Comments
 (0)