Get your own Python server Result Size: 625 x 565
x
 
a = ("a", "b", "c", "d", "e", "f", "g", "h")
x = slice(0, 8, 3)
print(a[x])
('a', 'd', 'g')