Python Forum
Not having to rewrite 'obj.' on each line
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Not having to rewrite 'obj.' on each line
#1
Let's say I have this class:
class MyNewClass:
    def func1(self):
		print('something to do')
    def func2(self):
		print('other thin to do')
The normal syntax to call methods of this class is:
obj = MyNewClass()
obj.func1()
obj.func2()
I would like to do exactly the same thing but without having to rewrite 'obj.' on each line as in this imaginary syntax:
obj = MyNewClass()
using obj:
    func1()
    func2()
Does Python allow you to write this kind of code?
Reply


Messages In This Thread
Not having to rewrite 'obj.' on each line - by beuaaa - Sep-29-2018, 08:04 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Optmized way to rewrite this very slow code liva28 0 1,502 Jul-18-2021, 12:16 PM
Last Post: liva28
  Cleaner way to rewrite fakka 5 3,095 Dec-05-2019, 04:53 AM
Last Post: stullis
  How do I rewrite this .bat file code onto Python? SteampunkMaverick12 4 2,873 Nov-02-2019, 11:28 PM
Last Post: snippsat
  Rewrite a function to make it work with 'bottle-pymysql' nikos 1 1,986 Feb-26-2019, 02:59 PM
Last Post: nikos
  piexif rewrite exif data yawstick 2 3,343 Oct-09-2018, 08:56 PM
Last Post: yawstick
  How to rewrite image file name based on ocr data.txt kevinchr 0 3,654 Apr-16-2018, 07:09 PM
Last Post: kevinchr
  how do i rewrite this code to give me 10 outputs BlackPimpernel 2 2,683 Mar-29-2018, 11:29 AM
Last Post: BlackPimpernel
  Rewrite variable every n times andrea0913 0 2,614 Aug-20-2017, 05:54 PM
Last Post: andrea0913

Forum Jump:

User Panel Messages

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