Answer:
def spell_name(s):
try:
return list(s)
except:
print("An exception occurred")
name = input('Enter your name: ')
print(spell_name(name))
Step-by-step explanation:
I wouldn't know how to trigger the exception though...
8.2m questions
10.8m answers