1
 class human:
    def speech(self,x):
        print(x, (THE NAME OF THE JACK) )

 jack = human()
 jack.speech("hi")

how i can take the "jack" as string and print in "def speech"

1 Answer 1

2

Take it as an argument in __init__, and set that attribute for the instance:

class Human:
    def __init__(self, name):
        self.name = name

    def speech(self, x):
        print(x, self.name)

jack = Human(name="Jack")
jack.speech("Hi")

Output:

Hi Jack
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.