Pesan Python Print Exception dan Stack Trace

# Basic syntax:
import traceback
try:
	your code here
except:
	print(traceback.format_exc())
Charles-Alexandre Roy