[10 pts]   7. Tracing 2   What is the output from the follow…

[10 pts]   7. Tracing 2   What is the output from the following function when called as shown? Please write the output in the box provided. This code happens to be in Python, but you can think of it as pseudocode.   HINT:In Python, you may slice a string using bracket notation. The general syntax is aString[index1:index2] where aString is the string being sliced, index1 is the first index to be included (inclusive), and index2 is the last index to be included (exclusive). For example, “beep”[0:3] would result in “bee”.   HINT:len(aString) returns the length of the string.   NOTE:Indexing in Python starts at 0.