Initializing variable in a class __init__
class SomeClass( object): def __init__( self, number ): self.num = number INPUTS = self.num * 2 What am I doing wrong here? I am trying to get a value to INPUTS based on how my class is initialized. it is giving me the error self is not initialized python-3.x class init