2
In a tuple of items, for example:
for x in range(2,numero+1):
1) Suppose the variable numero
has been defined before as 7. Thus, how do I not include the 7 in this tuple, wanting to go through all of its items, except the 7, using the method range
python?
What I place within the range to satisfy the above condition?
for x in range():