I'm beginner. In Delphi I can make private field in class: moving it to private section. So ClassVar.Field doesn't exist out of class.
In Python, if I make class
class CName:
  testname = 10
then testname can be accessed always. How can I make a field "private"?
 
    