Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9211523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T01:19:00+00:00 2026-06-18T01:19:00+00:00

I want to be able to return multiple objects of a class by using

  • 0

I want to be able to return multiple objects of a class by using a method within the class. Something like this.

class A:
    def __init__(self,a):
    self.a = a

    def _multiple(self,*l):
        obj = []
        for i in l:
            o = self.__init__(self,i)
            obj.append(o)
        return obj

When I execute this on iPython (iPython 0.10 and Python 2.6.6) I get the following

In [466]: l = [1,2]
In [502]: A._multiple(*l)
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)

TypeError: unbound method _multiple() must be called with A instance as 
first argument (got int instance instead)

I’m definitely unclear about the invocation as well as the ‘self’ keyword usage. Could you help me out in getting this correct?

Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T01:19:01+00:00Added an answer on June 18, 2026 at 1:19 am

    TypeError: unbound method _multiple() must be called with A instance
    as first argument (got int instance instead)

    The Error is self explanatory. It means that an instance method is being called as a Class method. To make the instance method as a class method add the decorator @classmethod

    >>> class A:
        def __init__(self,a):
            self.a = a
        @classmethod
        def _multiple(cls,*l):
            #Create multiple instances of object `A`
            return [A(i) for i in l]
    
    >>> l = [1,2]
    >>> A._multiple(*l)
    [<__main__.A instance at 0x066FBB20>, <__main__.A instance at 0x03D94580>]
    >>> 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I let's say I have a Python class: class Something: def __init__(self, a,
Possible Duplicate: Sorting Java objects using multiple keys I have an employee class. Based
I'm using LaTeX and BibTeX for an article, and I want to able to
Want to be able to provide a search interface for a collection of objects
So I want a class to be able to store a Class object, then
I have a model like this. #models.py class Payment(models.Model): unit_price = models.DecimalField(max_digits=12, decimal_places=2) discount
Can anyone tell me how to create multiple records in grails. This class is
this is my method def add @result @log = Log.new(params[:log]) if @log.save result =
How do I handle selection of multiple items with autocomplete? The objects I return
I need to return an array of class objects from a function. I understand

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.