Note: The attached image is a screenshot of page 31 of Dr. Charles Severance’s book, Python for Everybody: Exploring Data Using Python 3 (2024-01-01 Revision).


I thought = was a mathematical operator, not a logical operator; why does Python use

>= instead of >==, or <= instead of <==, or != instead of !==?

Thanks in advance for any clarification. I would have posted this in the help forums of FreeCodeCamp, but I wasn’t sure if this question was too…unspecified(?) for that domain.

Cheers!

 


Edit: I think I get it now! Thanks so much to everyone for helping, and @FizzyOrange@programming.dev and @itslilith@lemmy.blahaj.zone in particular! ^_^

24 points

It would be confusing and weird if “=” did different things depending on the context.

= is the assignment operator

== is the comparison operator.

the others using = only is probably just to keep things short, and the fact that the context is a lot clearer with another character like < next to the =

permalink
report
reply
8 points
*

Pascal uses = for comparison (and := for assignment), which confused the fuck out of me when I switched to C.

permalink
report
parent
reply
5 points

Some people in mathematics use := to assign functions, like f(x) := x^2; then when evaluating the function you use f(2) = 4, because it can be ser as a “true” comparison

permalink
report
parent
reply
1 point

I’ve never seen that, even in university, and it would be equally as confusing without explanation.

permalink
report
parent
reply

It would be confusing and weird if “=” did different things depending on the context.

That’s why I’m confused! It seems like it does!

If I were to write the code

x = 20
print(x*2)

it would execute as 40.

But then the video turns around and says that == is equal to, not =.

permalink
report
parent
reply
22 points

>= and <= match the mathematical operators. The question you want to ask is why doesn’t it use = for equality, and the answer is that = is already used for assignment (inherited from C among other languages).

In theory a language could use = for assignment and equality but it might be a bit confusing and error prone. Maybe not though. Someone try it and report back.

permalink
report
reply
4 points

I’ve written code before in some hardware-specific languages before (I think it was for programming a stepper motor or something?) that used = for both assignment and comparison. If I recall correctly, the language was vaguely C-like, but assignment was not permitted in the context of a comparison. So something like if( a = (b+c) ) would not assign a value to a, it would just do the comparison.

permalink
report
parent
reply
3 points
*

Rust does an interesting thing in this regard. It does still have == for checking if two values are equal, but well, it actually doesn’t have a traditional assignment operator. Instead, it has a unification operator, which programmers usually call “pattern matching”.

And then you can use pattern matching for what’s effectively an assignment and to some degree also for equivalence comparison.
See a few examples here: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=1268682eb8642af925db9a499a6d587a

permalink
report
parent
reply
2 points
*

This reminds me on the niche tool in Mathematica I’ve been using, which has four different assignment oparators for that purpose.

permalink
report
parent
reply
2 points
*

It does still have a traditional assignment operator. You can assign values to mutable variables.

Also I would say let-binds are still pretty much assignment; they just support destructuring. Plenty of languages support that to some extent (JavaScript for example) and you wouldn’t say they don’t have assignment.

I don’t think it affects the ability to overload = anyway. I think there aren’t any situations in Rust where it would be ambiguous which one you meant. Certainly none of the examples you gave compile with both = and ==. Maybe there’s some obscure case we haven’t thought of.

permalink
report
parent
reply

I think what I’m most confused about is I cannot for the life of me seem to wrap my head around the difference between “assignment” and “equality”. They seem exactly the same to me: when a variable is assigned a value, it’s equal to that value now.

Even if I were write the program

x = 20
print(x*2)

it would still print 40. Because x is equal to 20. Because it was assigned the value of 20.

Hell, I’ve even heard Dr. Severance say “equal to” in this context in earlier videos multiple times.

permalink
report
parent
reply
7 points

They seem exactly the same to me: when a variable is assigned a value, it’s equal to that value now.

Yeah it’s confusing because in maths they are the same and use the same symbol but they are 100% not the same in programming, yet they confusingly used the same symbol. In fact they even used the mathematical equality symbol (=) for the thing that is least like equality (i.e. assignment).

To be fair not all languages made that mistake. There are a fair few where assignment is like

x := 20

Or

x <- 20

which is probably the most logical option because it really conveys the “store 20 in x” meaning.

Anyway on to your actual question… They definitely aren’t the same in programming. Probably the simplest way to think of it is that assignment is a command: make these things equal! and equality is a question: are these things equal?

So for example equality will never mutate it’s arguments. x == y will never change x or y because you’re just asking “are they equal?”. The value of that equality expression is a bool (true or false) so you can do something like:

a = (x == y)

x == y asks if they are equal and becomes a bool with the answer, and then the = stores that answer inside a.

In contrast = always mutates something. You can do this:

a = 3
a = 4
print(a)

And it will print 4. If you do this:

a = 3
a == 4
print(a)

It will (if the language doesn’t complain at you for this mistake) print 3 because the == doesn’t actually change a.

permalink
report
parent
reply

Ohhhhh! I think I get it now!

So == means “equals” and is a declaration of the state of things, while = means "assigned the value of` and is a command toward a certain state of things. A description vs an action. An observation of a thing as opposed to effecting that thing.

Is that about right?

permalink
report
parent
reply
2 points
*

How would you check two variables have equal values without changing the value of one otherwise?

Assignment you are assigning a value to the left side. Equality you are checking if the left and right are equal.

It’s “set equal to” Vs “is equal to” one is an operation the other is a condition.

permalink
report
parent
reply
1 point

ah, but consider: a+b=2
(perfectly valid in metafont!)

permalink
report
parent
reply

I apologize; I do not know what “metafont” is…

permalink
report
parent
reply
11 points

My logic was always, if == is equal, then for >= we replace one of the equal signs to denote that it doesn’t have only be equal but can be both.

But that was probably also influenced by languages where == means the value is equal and === means value and type have to be equal for the comparison to be true. If you compare “5” and 5 in those languages, == will be true and === will be false, since one is a string and one is a number.

At the end of the day, those signs are arbitrary conventions. People agree on them meaning something in a specific context, and the same thing can mean different things in different contexts. A in English represents a different sound than A in Spanish, and sometimes even in other dialects of English. Thinking of out like that helped me to keep the conventions of different programming languages apart.

permalink
report
reply
1 point

Don’t remember what language uses === to check if two objects have the same memory id assigned. Like a = 1, b= 1 would give true to a == b but false to a === b; while a = 1, b = a, would give true to both.

permalink
report
parent
reply
8 points
*

It’s a convention set by early programming languages.

In most C-like languages, if (a = b)... is also a valid comparison. The = (assignment) operation returns the assigned value as a result, which is then converted to a boolean value by the if expression. Consider this Javascript code:

let a = b = 1
  1. It first declares the b variable and assigns it the value of the expression 1, which is one.
  2. It returns the result of the expression b = 1, which is the assigned value, which is 1.
  3. It declares the a variable and assigns the previously returned value, which is 1.

Another example:

let a = 1
let b = 2
let c = 3
console.log(a == b) // prints "false" because the comparison is false
console.log(a = b) // prints 2 because the expression returns the value of the assignment, which is 'b', which is 2

// Using this in an 'if' statement:
if (b = c) { // the result of the assignment is 3, which is converted to a boolean true
    console.log("what")
}

You can’t do the same in Python (it will fail with a syntax error), but it’s better to adhere to convention because it doesn’t hurt anyone, but going against it might confuse programmers who have greater experience with another language. Like I was when I switched from Pascal (which uses = for comparison and := for assignment) to C.

permalink
report
reply
5 points

With python you can use the := to assign and return new value.

permalink
report
parent
reply
3 points

Walrus operator my beloved

permalink
report
parent
reply
8 points

It’s still a mathematic operator. There’s an entire field of math dedicated to comparisons, and it’s featured heavily in most programming languages. Computer science is a field dedicated to the application of math

permalink
report
reply

Python

!python@programming.dev

Create post

Welcome to the Python community on the programming.dev Lemmy instance!

📅 Events
Past

November 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
💓 Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
  • Pythörhead: a Python library for interacting with Lemmy
  • Plemmy: a Python package for accessing the Lemmy API
  • pylemmy pylemmy enables simple access to Lemmy’s API with Python
  • mastodon.py, a Python wrapper for the Mastodon API
Feeds

Community stats

  • 733

    Monthly active users

  • 469

    Posts

  • 2.4K

    Comments