Rust has an amazing dbg macro that lets you quickly set up an expression printer that will also put in the source line. It also returns the value of the expression so you can even easily inline the printing when you want to! #!rustleta=2;letb=dbg!(a*2)+1;//^--prints:[src/main.rs:2]a*2=4assert_eq!(b,5); Doing a bunch of Python, I want this in Python as well. I want a debug macro, one that gives me the file location + the expression used to calculate the value. My ideal would be to have a funct...