My issue
def find_divisibles(start, end, divisor):
# TODO: Implement the function using List comprehension
pass
if name == “main”:
start, end, divisor = map(int, input().split())
result = find_divisibles(1,10,3)
print(1,10,3)
My code
def find_divisibles(start, end, divisor):
# TODO: Implement the function using List comprehension
pass
if __name__ == "__main__":
start, end, divisor = map(int, input().split())
result = find_divisibles(1,10,3)
print(1,10,3)
Learning course: Python Coding Challenges
Problem Link: Divisible Number Finder Practice Problem in Python Coding Challenges