Welcome to Mr. Kingsland's 4 part Python Challenges

Part 1:
Description:
What is the sum of all the multiples of 17 that are less than 1729
(Example: All the multiple of 3 that are less than 10 are 3, 6, and 9. Their sum is 18.)

Hint 1: range function

In a python console enter the following:    range(1, 11)
You can, of course, assign a variable to the output:    x = range(1, 11)
Hint 2: modulus operator
We may have looked briefly at this VERY important mathematical operator called "modulus"
To test it, enter the following in a console:    12 % 5