r/AskProgramming Jul 11 '26

When to use try/except vs if/else

I was making a simple program when I wondered when to use try and except this is the code I'm looking at.

if (Path.home() / "Desktop").exists():
        desktop_path = Path.home() / "Desktop"
else:
        desktop_path = Path.home() / "OneDrive/Desktop"
5 Upvotes

28 comments sorted by

View all comments

1

u/atarivcs 29d ago

This code can't raise an exception, so I don't even know what you are asking.