In many languages (and places) there is a nice practice of creating local scopes by creating a block like this.
void foo() { ... Do some stuff ...
If you just want to create temp variables and let them be garbage collected right after using them, you can use
del varname
when you don't want them anymore.
If its just for aesthetics, you could use comments or extra newlines, no extra indentation, though.