473,385 Members | 1,311 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Newcomer struggling with tutorial

Just joined this group, fascinated by Python. Many thanks to those who have
worked so hard on it!

One big problem, though: I was completely thrown by this, which I quote
from the Tutorial:
Comparisons can be chained. For example, a < b == c tests whether a is

less than b and moreover b equals c.

I threw a mental wobbly and wasted two hours over this:

a = -1
b = 77
c = 1

(a < b)
True

True == c
True

(a < b) == c
False

Unfortunately I was brought up with the belief that if A == B and B == C,
then A should == C.

I confess that after two hours worrying about this I have given up on
Python and uninstalled it. A shame: it looked so good!

CPKS
Jul 18 '05 #1
6 1382
CPK Smithies wrote:

I threw a mental wobbly and wasted two hours over this:

a = -1
b = 77
c = 1

(a < b)
True

True == c
True

(a < b) == c
False

Unfortunately I was brought up with the belief that if A == B and B == C,
then A should == C.
Strangely enough it does. Your last line is incorrect. Try executing
it again, from scratch, without reassigning any of the three values
you originally entered, because that's surely what you have done to
get that result.

Using Python 2.3:

C:\>python
Python 2.3.1 (#47, Sep 23 2003, 23:47:32) [MSC v.1200 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
a = -1
b = 77
c = 1
a < b True True True True == c True (a < b) == c

True
I confess that after two hours worrying about this I have given up on
Python and uninstalled it. A shame: it looked so good!


A shame indeed, were it in fact how Python worked.

-Peter
Jul 18 '05 #2
On Sun, Oct 05, 2003 at 03:17:31AM +0000, CPK Smithies wrote:
Just joined this group, fascinated by Python. Many thanks to those who have
worked so hard on it!

One big problem, though: I was completely thrown by this, which I quote
from the Tutorial:
Comparisons can be chained. For example, a < b == c tests whether a is less than b and moreover b equals c.

I threw a mental wobbly and wasted two hours over this:

a = -1
b = 77
c = 1

(a < b)
True

True == c
True

(a < b) == c
False


Did you type this from memory, rather than copying and pasting? This is
what I see:
a = -1
b = 77
c = 1
(a < b) True True == c True (a < b) == c True a < b == c False (a < b) and (b == c)

False
Do you see the distinction? "a < b == c" is the same as writing "(a < b)
and (b == c)" in python, but "(a < b) == c" isn't. Perhaps the tutorial's
wording is unclear.
I confess that after two hours worrying about this I have given up on
Python and uninstalled it. A shame: it looked so good!


Then why are you posting here? ;)

-Andrew.
Jul 18 '05 #3
> a = -1
b = 77
c = 1

(a < b)
True

True == c
True

(a < b) == c
False

Unfortunately I was brought up with the belief that if A == B and B == C,
then A should == C.

I confess that after two hours worrying about this I have given up on
Python and uninstalled it. A shame: it looked so good!


well isnt that the defeatist way to go.

sounds like you're trying to compare two values that are not necessarily
the same. You're thinking in boolean logic, and trying to express it in
a totally different way.

You wanted :

a = 1
b = 2
c = 1
print ((a<2) & c)

So we are saying we want to have BOTH (a<2) AND (c) to be true.

Dave

Jul 18 '05 #4
CPK Smithies wrote:
Just joined this group, fascinated by Python. Many thanks to those who have
worked so hard on it!

One big problem, though: I was completely thrown by this, which I quote
from the Tutorial:

Comparisons can be chained. For example, a < b == c tests whether a is


less than b and moreover b equals c.

I threw a mental wobbly and wasted two hours over this:

a = -1
b = 77
c = 1

(a < b)
True

True == c
True

(a < b) == c
False

Unfortunately I was brought up with the belief that if A == B and B == C,
then A should == C.

I confess that after two hours worrying about this I have given up on
Python and uninstalled it. A shame: it looked so good!

CPKS

I have not read the tutorial, but the section you quote is quite clear
about what chaining means. I did not know about this, but it is kind of
neat. For example:
a = 1; b = 2; c = 3; d = 4
a < b < c < d < 5 True a < b < c < d < 3

False

Python actually conforms more to standard math notation for transitivity
than whatever language you were 'brought up' on, which results in
confusion when you are used to standard algebraic notation. I still
recall 39 years ago being quite puzzled when I saw the statement:
LET A = A+1

Good luck with whatever language you choose. Personally, I have found
Python to be a wonderful practical tool for the occasional programmer
like me. And this group is a nice community for the isolated user
because someone usually supplies answers quickly and non-judgementally
(for the most part).

david

Jul 18 '05 #5

"CPK Smithies" <cp**@NOSPAM.btopenworld.com> wrote in message
news:bl**********@hercules.btinternet.com...
from the Tutorial:
Comparisons can be chained. For example, a < b == c tests whether a is
less than b and moreover b equals c.

This means that a < b == c is equivalent to
(a < b) and (b == c) and not
(a < b) == c., which is something else.

Chained operators are *not* 'associative' -- you cannot insert parens
unless you so for each overlapping pair of args and insert 'and'
between each.
I threw a mental wobbly and wasted two hours over this:

a = -1
b = 77
c = 1

(a < b)
True

True == c
True
For a < b == c, the second test Python makes is b==c (False).
But this matches for your next test.
(a < b) == c
False
For 2.2.1 (which does not have True/False on Windows .
a,b,c = -1, 77, 1
a < b 1 (a < b) == 1

1

What version/machine were you running? Please cut and paste actual
output. If you have really discovered a bug in current Python, we
would want to know and fix it.
Unfortunately I was brought up with the belief that if A == B and B == C, then A should == C.
Why 'unfortunately'? For builtin objects, this is true in Python.
I confess that after two hours worrying about this I have given up on Python and uninstalled it. A shame: it looked so good!


If you really did that, it was a real shame.

Terry J. Reedy
Jul 18 '05 #6
Like others have pointed out, Python does that chained comparison right.

I confess that after two hours worrying about this I have given up on
Python and uninstalled it. A shame: it looked so good!

CPKS


That seems to be a flame bait to me. ;)
Perhaps not a good one because people didn't bite. Or we are just too
Pythonic (and squeeze instead) :-)

Cheers,
Pm


Jul 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Florian Daniel Otel | last post by:
Hello all, As the subject says, I am a newcomer to Python and I have a newcomer question wrt namespaces and variable scope. Obviously, I might be missing smth obvious, so TIA for the patience...
160
by: RG | last post by:
Greetings friends, This semester I have started a course in C programming. I was moving along fine until I reached to the topic of loops (feeling embarrassed among you elite programmers). My...
5
keyvanrahmadi
by: keyvanrahmadi | last post by:
Hopefully I am posting in the right section and not annoying everyone, if I am then please except my sincere apology for wasting your time and hopefully the Mods will move it to the right location...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.