Python Taskbook Level 1.5
Find the sum of all integers from 1 to 100.
Find the sum of all even integers between 1 and 100.
Find the sum of all odd integers between 1 and 100.
Given two integers, find the remainder of the first number divided by the second.
Given a list:
[1, 2, 3, 4, 5, 6]
Get every second element from it:
[1, 3, 5]