The output of the provided program would be y
.
Here's why:
- The string variable
color
is assigned the value"Navy Blue"
. - In Python, string indexing starts at 0. Therefore:
color[0]
is'N'
color[1]
is'a'
color[2]
is'v'
color[3]
is'y'
Thus, when print(color[3])
is executed, it outputs the character at index 3, which is y
.