Programming Examples
Python program that creates a list of numbers from 1 to 20 that are divisible by 4
Write a python program that creates a list of numbers from 1 to 20 that are divisible by 4
Output/ Explanation:
[0, 4, 8, 12, 16, 20]
Write a python program that creates a list of numbers from 1 to 20 that are divisible by 4
Output/ Explanation:
[0, 4, 8, 12, 16, 20]