Python error handling
ERROR HANDLING WITH TRY-EXCEPT
def echo(word, e=1):
"""Concatenate echo copies of a word"""
try:
echo_word = word * e
except:
print("word must be a string and echo must be an integer.")
return echo_word
Call the fu...
massyfigini.hashnode.dev1 min read