This is the code and notes from my live Twitch programming and drawing classes.
 
 
streaming-school/python/code/module-3/ex48_convert.py

6 lines
98 B

def convert_number(s):
try:
return int(s)
except ValueError:
return None