Computer Science, asked by harsimar5544, 4 months ago

Select the Output :: print(list(range(2, 8,2)))

Answers

Answered by assthha161
1

print(list(range(2, 8,2)))

Output

[2,4,6]

Similar questions