¡@

Home 

python Programming Glossary: tryway

Python if vs try-except

http://stackoverflow.com/questions/3929837/python-if-vs-try-except

try except is slower than the if in the program below. def tryway try while True alist.pop except IndexError pass def ifway while.. import Timer alist range 1000 print Testing Try tr Timer tryway from __main__ import tryway print tr.timeit print Testing If.. print Testing Try tr Timer tryway from __main__ import tryway print tr.timeit print Testing If ir Timer ifway from __main__..