Better way to use try except block

I have a requirement to execute multiple Python statements and few of them might fail during execution, even after failing I want the rest of them to be executed.

Currently, I am doing:

try:
    wx.StaticBox.Destroy()
    wx.CheckBox.Disable()
    wx.RadioButton.Enable()
except:
    pass

If any one of the statements fails, except will get executed and program exits. But what I need is even though it is failed it should run all three statements.

How can I do this in Python?