How do I name a variable with acronym?

naming-conventions, python

Solution

The style most agreeing with PEP-8 would probably be...

`example_dto = ExampleDTO()`

Problem

For example in Java for Data Transfer Object I use as: ``` ExampleDTO exampleDTO = new ExampleDTO(); ``` So, if I am following PEP 8 (lower_case_with_underscores), what naming convention should I use for similar in Python?

Original source