Let's say I have code:
try:
os.listdir('/sdcdsc')
except:
print 'Error'
From Python-way point of view (or anything else) - is there something wrong/bad using such except *
?
It's impossible to do except ExeptionName as error
in this way - but this code works.