pythonterminology

Python: Stacktrace vs Traceback


In the Python world there are two terms which seem to be equal:

Is there any difference between the two?


Solution

  • Traceback is the idiomatic Python term (for example, the traceback module), it's often used interchangeably with stacktrace, which is used in other languages such as Java.