Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
inheritance
#2
self act like a transportation between between class/method internally and in a inheritance setup.
I have give example better names,so it kind of make sense.
class First():
    def number_input(self):
        self.x = int(input("whats your first number?\n"))

class Second(First):
    def result(self):
        z = self.x + 2
        print(z)
Test:
Output:
>>> obj = Second() >>> obj.number_input() whats your first number? 50 >>> obj.result() 52
Reply


Messages In This Thread
inheritance - by Arifattal - Jan-09-2018, 05:40 PM
RE: inheritance - by snippsat - Jan-09-2018, 07:00 PM
RE: inheritance - by Arifattal - Jan-09-2018, 07:17 PM
RE: inheritance - by Arifattal - Jan-15-2018, 02:52 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020