Strings1 / 13
EASY·Output prediction

What does this code print?

s = "hello"
try:
    s[0] = "H"
except Exception as e:
    print(type(e).__name__)

Sign in to save your progress.