use python range () function to create the following list : [10,6,2,-2]
Answers
Answered by
4
Answer:
lst = list(range(10, -3, -4))
Similar questions