Hi All,
I have numbers between 1-100 and I want to display the 5 multiples and 5 included numbers.
Sample output: 5,10,15,20,25,30.................. 50,51,52,53,54,55,56,57,58,59,60,65,70...............95,100.
Discussion posts and replies are publicly visible
(enumerate(20) + 1)*5
Very interesting to see different ways to do it. However I liked this one most.