Computer Science, asked by narmisaykahs, 10 months ago

What will be the output of the following Python code?

>>>t = (1, 2, 4, 3, 8, 9)

>>>[t[i] for i in range(0, len(t), 2)]​

Answers

Answered by sg249344
3

Answer:

[t[i] for i in range(0, len(t), 2)]

^

SyntaxError: invalid character in identifier

Explanation:

Error will occur

Mark me as the brainliest

Similar questions