I have my code below.
I want to call the "speak" function with two arguments inside the main() class. When I call speak it says that self its not defined
I'm new to POO.
class main():
def blueon(self):
print("teste")
def speak(self,fala):
self.blueon
print(fala)
speak("testeaaaaa")