Q19Numerical3 Marks22 Dec 2024
Consider the following Python code snippet. What will be the output after executing the code? Enter an integer as your answer.
```
text = "Data Science at IITM"
substring = list(text[5:15:2])
result = substring + [2] + [3] + [5]
length = len(result)
print(length)
```
Press Enter to check.