JustPaste.it

class Person:
      def __init__(self, nickname):
            self.nickname = nickname

print(Person("smartasian").nickname)

 

class MyStuff(object):

      def __init__(self):

            self.tangerine = "And now a thousand years between"

      def apple(self):

            print("I AM CLASSY APPLES!")