Comment on Python Multiple Assignment Is a PuzzleparentComments−TheLoneWolfling12yPython is designed for it, and it makes it cleaner, so why not?EAFP: Easier to ask for forgiveness than permissionThat being said, just a blanket except is a bad idea.−zebulanmcranahn12yThanks for the ValueError tip. I added it as well as a TypeError just in case the input comes in as a string. My skills are beginner level at best, tips like yours help a lot!
Comments
Python is designed for it, and it makes it cleaner, so why not?
EAFP: Easier to ask for forgiveness than permission
That being said, just a blanket except is a bad idea.
Thanks for the ValueError tip. I added it as well as a TypeError just in case the input comes in as a string. My skills are beginner level at best, tips like yours help a lot!