Private members of the Class

Q. Given the code below, how can we correctly increment the element variable by one.

class BluePrint:
__element = 1

      def __init__(self):
             self.component = 1

      def __action(self):
         pass

product = BluePrint()