MCPcopy Create free account
hub / github.com/CodeWithHarry/The-Ultimate-Python-Course / divisible5

Function divisible5

Chapter 13 - PS/04_problem4.py:1–4  ·  view source on GitHub ↗
(n)

Source from the content-addressed store, hash-verified

1def divisible5(n):
2 if(n%5 == 0):
3 return True
4 return False
5
6a = [1,2,34234,53,6234235,64343, 65,754,45,55]
7

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected