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

  • Home
  • SEARCH
  • 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 944483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T22:36:00+00:00 2026-05-15T22:36:00+00:00

Is it common in Python to keep testing for type values when working in

  • 0

Is it common in Python to keep testing for type values when working in a OOP fashion?

class Foo():
    def __init__(self,barObject):
        self.bar = setBarObject(barObject)

    def setBarObject(barObject);
        if (isInstance(barObject,Bar):
            self.bar = barObject
        else:
            # throw exception, log, etc.

class Bar():
    pass

Or I can use a more loose approach, like:

class Foo():
    def __init__(self,barObject):
        self.bar = barObject

class Bar():
    pass
  • 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-05-15T22:36:00+00:00Added an answer on May 15, 2026 at 10:36 pm

    Nope, in fact it’s overwhelmingly common not to test for type values, as in your second approach. The idea is that a client of your code (i.e. some other programmer who uses your class) should be able to pass any kind of object that has all the appropriate methods or properties. If it doesn’t happen to be an instance of some particular class, that’s fine; your code never needs to know the difference. This is called duck typing, because of the adage “If it quacks like a duck and flies like a duck, it might as well be a duck” (well, that’s not the actual adage but I got the gist of it I think)

    One place you’ll see this a lot is in the standard library, with any functions that handle file input or output. Instead of requiring an actual file object, they’ll take anything that implements the read() or readline() method (depending on the function), or write() for writing. In fact you’ll often see this in the documentation, e.g. with tokenize.generate_tokens, which I just happened to be looking at earlier today:

    The generate_tokens() generator requires one argument, readline, which must be a callable object which provides the same interface as the readline() method of built-in file objects (see section File Objects). Each call to the function should return one line of input as a string.

    This allows you to use a StringIO object (like an in-memory file), or something wackier like a dialog box, in place of a real file.

    In your own code, just access whatever properties of an object you need, and if it’s the wrong kind of object, one of the properties you need won’t be there and it’ll throw an exception.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 497k
  • Answers 497k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer There is no inherent security difference, no matter whether you… May 16, 2026 at 11:52 am
  • Editorial Team
    Editorial Team added an answer One option would be to set the CL environment variable,… May 16, 2026 at 11:52 am
  • Editorial Team
    Editorial Team added an answer It is probably easier to create your own LinkButton by… May 16, 2026 at 11:52 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

Virtualenv is great: it lets me keep a number of distinct Python installations so
I'm currently learning Python and coming from a strong C# background. I keep hearing
Common LISP and Emacs LISP have the atom type predicate. Scheme and Clojure don't
Let's say that we have a Python script do.py and we want to be
I would like to create a library, say foolib, but to keep different subpackages
I've been working on an implementation of the Mandelbrot Set in several different languages.
I have two Python lists of dictionaries, entries9 and entries10 . I want to
My common usecase for my Struts2 application is that I have Actions that collect
A fairly common requirement in database applications is to track changes to one or
That is a common question, but I would like to hear some expert opinions.

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.