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 8217985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:38:00+00:00 2026-06-07T12:38:00+00:00

I have a class Point that accepts position, value and flag as arguments. This

  • 0

I have a class Point that accepts position, value and flag as arguments. This class should accept only integers as position and value arguments. I tried the code below, but it doesn’t work properly.

class PointException(Exception):
    pass

class Point():
    def __init__(self, position, value, flag=False):
        try:
            if all([isinstance(x, int) for x in position, value]):
                self.position = position
                self.value = value
                self.point = (position, value)
            self.flag = flag
        except:
            raise PointException("Foo value and position must be integers.")

    def __repr__(self):
        return "< {0}, {1}, {2} >".format(self.position, self.value, self.flag)

    def __eq__(self, other):
        if not isinstance(other, Point):
            return False
        try:
            return all([self.point == other.point, self.flag == other.flag])
        except AttributeError:
            return False

    def __ne__(self, other):
        return not self.__eq__(other)

Update

I get an AttributError when I try Point(1, 1.2), for instance.

AttributeError: Point instance has no attribute 'position'
  • 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-07T12:38:01+00:00Added an answer on June 7, 2026 at 12:38 pm
    if all([isinstance(x, int) for x in position, value])
    

    should be

    if all(isinstance(x, int) for x in (position, value))
    

    And more generally you have to raise the exception in __init__, not catch it with except:

    def __init__(self, position, value, flag=False):
        if not all(isinstance(x, int) for x in (position, value)):
            raise PointException("Foo value and position must be integers.")
    
        self.position = position
        self.value = value
        self.point = (position, value)
        self.flag = flag
    

    There are other areas of improvement that you can read about in the other answers

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

Sidebar

Related Questions

i have bug that i cannot find, i have Class Point with method who
Say that I have an immutable Point class with x and y parameters, and
I have the following exercise: Define a class named circle that accepts objects of
Here's the situation. I have a base class which implements a method that accepts
I have a class that has an Action<string> called DisplayData ; In various points
I have a ViewModel class that contains a list of points, and I am
I have a QGraphicsObject derived class that holds a QImage and ovveride paint(QPainter *painter,
Let's say I have a class Point: class Point { int x, y; public:
I have the following class: #include <array> template<unsigned short D> class Point { private:
I have two classes set up as follows: class Point { protected: double coords[3];

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.