Intervals in Python3 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Intervals in Python3

Hi! Could someone teach me how to create an interval in Python? I've already searched on the internet but came without a good answer. I get an error whenever I type ---> x=interval ( [2,y-1] ). I need integers to build my very first program. I tried to import interval from interval module but Py doesn't recognize it. Thanks in advance!

24th Aug 2018, 7:10 PM
Virgil Baclanov
Virgil Baclanov - avatar
8 Answers
+ 15
Virgil Baclanov Let's say you want to divide the integer 294 by every integer in the interval from 13 up to 54. The results can make a list like this: x = 294 results = [x/y for y in range(13, 55)] Observation: the `%` symbol is for modulus operation, not for division.
24th Aug 2018, 8:02 PM
Eduardo Petry
Eduardo Petry - avatar
+ 11
Assume you need an interval from 1 to 9. So you do: my_interval = list(range(1, 10)) # the end of the interval is non-inclusive # so if you need an interval from "m" up to "n", you should do range(m, n+1)
24th Aug 2018, 7:47 PM
Eduardo Petry
Eduardo Petry - avatar
+ 6
You would do something like this: new_list = [] for i in interval: new_list.append(i % 5) print(new_list) -------------- To shorten that you could do: print([i % 5 for i in interval])
24th Aug 2018, 8:03 PM
Just A Rather Ridiculously Long Username
+ 5
You might be looking for range objects: >>> x = range(50, 100) >>> len(x) 50 >>> 83 in x True >>> x[3] 53 >>> x[-1] 99 >>> x[13:24] range(63, 74) >>> for i in range(11): print(i*i, end = ' ') 0 1 4 9 16 25 36 49 64 81 100
24th Aug 2018, 7:57 PM
Just A Rather Ridiculously Long Username
+ 4
Eduardo Petry Just A Rather Ridiculously Long Username Thanks a lot, guys! Both versions seem to work for my program. Have a nice day!
24th Aug 2018, 8:05 PM
Virgil Baclanov
Virgil Baclanov - avatar
+ 4
Oh okay thanks, happy coding!
24th Aug 2018, 8:07 PM
Just A Rather Ridiculously Long Username
24th Aug 2018, 8:09 PM
Virgil Baclanov
Virgil Baclanov - avatar
+ 2
Eduardo Petry thanks! But, what do I do when I wanna divide an integer by *each* integers in the interval? example -- I type ---> if dividend%interval==0: ... but Phyton is telling me that it is an unsupported operand type(s) for %: 'int' and 'list'
24th Aug 2018, 7:59 PM
Virgil Baclanov
Virgil Baclanov - avatar