We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 953e982 + f10d47c commit f503fd6Copy full SHA for f503fd6
Python/divisibility by 7.py
@@ -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