Python — Quickly Debug a Variable Value

raise Exception, “an error message string”
Will raise an exception and print the string.

raise Exception, str(my_variable)

raise Exception, str(myDictionary)

raise Exception, ” %s %s %s” % (v1, v2, v3)

Leave a Comment