What is the output of the following code? ```python x = "Python" print(x[0:2]) ```

Explanation:

The slicing x[0:2] extracts the characters from index 0 to 1.