MCPcopy
hub / github.com/CodeWithHarry/The-Ultimate-Python-Course / multiply

Function multiply

Chapter 8 - PS/08_problem8.py:1–3  ·  view source on GitHub ↗
(n)

Source from the content-addressed store, hash-verified

1def multiply(n):
2 for i in range(1, 11):
3 print(f"{n} X {i} = {n*i}")
4
5multiply(5)

Callers 1

08_problem8.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected