Computer Science, asked by Chiefmortis, 6 months ago

use python range () function to create the following list : [10,6,2,-2]​

Answers

Answered by Oreki
4

Answer:

lst = list(range(10, -3, -4))

Similar questions