Use the Python range() function to create the following list : [7,3,-1,-5]
Answers
Answered by
0
Answer:
Python range() example
Get numbers from range 0 to 6
0, 1, 2, 3, 4, 5,
Note: We got integers from 0 to 5 because range() function doesn’t include the last (stop) number in the result.
Explanation:
Similar questions