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