FlashDangerpants wrote: ↑Tue Oct 03, 2023 6:17 pm
<dum dumb fuckery by the dumb dumb fuck>
You don't even have a clue what anything means, you world-class sophist. All you have is anger management issues.
id.png
ChatGPT wrote:Certainly! Let's break down each of these Python code snippets and their outputs:
In [1]: class A: pass
This code defines a class named A with no attributes or methods. It's a simple class with no special functionality.
In [2]: A == A()
In this code, you are comparing the class A to an instance of the class A created using A(). The comparison operator == is used to check if both objects are equal.
Output (Out[2]): False
The output is False because a class and an instance of that class are not considered equal in Python.
In [3]: A() == A()
In this code, you are comparing two instances of the class A, both created using A(). Again, the comparison operator == is used to check if both objects are equal.
Output (Out[3]): False
The output is False because, by default, two different instances of a class are not considered equal unless you define an __eq__ method in the class to specify how equality should be determined.
In [4]: A == A
In this code, you are comparing the class A to itself (i.e., comparing the class object to the class object).
Output (Out[4]): True
The output is True because in Python, when you compare two class objects using ==, they are considered equal if they refer to the same class definition. In this case, both A and A refer to the same class A, so the comparison is True.
We've unlocked a new level of sophistry! Copy/pasting without comprehension.
That bit should confuse you. A lot.
Imagine having two bitwise-identical copies of an object.... and yet their equality is undefined.
The output is False because, by default, two different instances of a class are not considered equal unless you define an __eq__ method in the class to specify how equality should be determined.
Skepdick wrote: ↑Tue Oct 03, 2023 8:13 pm
You keep telling me what sameness isn't.
Are you ever going to tell me what sameness is?
It's being the same
And now you have to tell me what "being" is too...
It's like you don't know how to use your words or something.
Looks like you simply have no concept of identity, so no matter how I try to circumscribe it you find it unintelligible.
I have NO idea how someone can have no concept of identity. Maybe without abstract thinking, such a concept can't exist? Or is it maybe some other quirk of yours?
Atla wrote: ↑Tue Oct 03, 2023 8:26 pm
Looks like you simply have no concept of identity, so no matter how I try to circumscribe it you find it unintelligible.
I have NO idea how someone can have no concept of identity. Maybe without abstract thinking, such a concept can't exist, or is it some other quirk of yours?
We've unlocked a new level of sophistry! Copy/pasting without comprehension.
That bit should confuse you. A lot.
Imagine having two bitwise-identical copies of an object.... and yet their equality is undefined.
The output is False because, by default, two different instances of a class are not considered equal unless you define an __eq__ method in the class to specify how equality should be determined.
And if you create Python B language where the default is True, then you'll get True. Absolutely world shattering.
Atla wrote: ↑Tue Oct 03, 2023 8:28 pm
And if you create Python B language where the default is True, then you'll get True. Absolutely world shattering.
Shattering? No. It's just a choice. Which is the whole damn point!
What makes one choice "right" and another "wrong" in a moral subjectivist world-view?
Atla wrote: ↑Tue Oct 03, 2023 8:26 pm
Looks like you simply have no concept of identity, so no matter how I try to circumscribe it you find it unintelligible.
I have NO idea how someone can have no concept of identity. Maybe without abstract thinking, such a concept can't exist, or is it some other quirk of yours?
You can't communicate your concepts?
That's definitely not a me-problem...
Of course it's a you-problem if you lack abstract thinking.
Atla wrote: ↑Tue Oct 03, 2023 8:28 pm
And if you create Python B language where the default is True, then you'll get True. Absolutely world shattering.
Shattering? No. It's just a choice. Which is the whole damn point!
What makes one choice "right" and another "wrong" in a moral subjectivist world-view?
The only point here is that you can't use the program Python itself to make any big claim.