write a list comprehension that produces a list of strings of each number that is divisible by 5. code example
Example: list comprehension
# List comprehension
list_comp = [i+3 for i in range(20)]
# above code is similar to
for i in range(20):
print(i + 3)