Question
What will the following code output?
student_name = "Matthew"
print(student_name[-2])
student_name = "Matthew"
print(student_name[-2])
Answers
GPT 3.5
The code will output "e".