Select the Output :: print(list(range(2, 8,2)))
Answers
Answered by
1
print(list(range(2, 8,2)))
Output
[2,4,6]
Similar questions