[[
wikihub
]]
Search
⌘K
Explore
People
For Agents
Sign in
Explore
People
For Agents
Sign in
@jemoka / Jemoka Knowledge Base / raw/concept/kbhstack_trace.md
Suggest edit
Cancel
Submit suggestion
Title
Name
Note
--- title: "stack trace" source: https://www.jemoka.com/posts/kbhstack_trace/ --- A stack trace is the output of failing code by the runtime to indicate the location of the fault. For instance, in Python: --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-1-0b766d7d4bc7> in <module> ----> 1 0+"" TypeError: unsupported operand type(s) for +: 'int' and 'str'