Just like the normal python editor, I think it would be nice if UnrealEnginePython did this: ``` >>> one = 1 >>> one 1 ``` Currently, it does this: ``` >>> one = 1 >>> one ````