如何用首字母缩略词命名变量?

Vis*_*hal 2 python naming-conventions

例如,在Java for Data Transfer Object中,我用作:

ExampleDTO exampleDTO = new ExampleDTO();
Run Code Online (Sandbox Code Playgroud)

那么,如果我关注PEP 8(lower_case_with_underscores),我应该在Python中使用哪种命名约定?

Fog*_*ird 10

最符合PEP-8的风格可能是......

example_dto = ExampleDTO()