What will be assigned to the string variable even after the execution of the following code?

What will be assigned to the string variable even after the execution of the following code?


special = '0123456789'


even = special[0:10:2]


Answer: '02468'


Learn More :