473,440 Members | 1,745 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,440 software developers and data experts.

Need help in understanding a python code

Hi,

I am trying to understand the following line:
# a is an integer array

max([(sum(a[j:i]), (j,i))

Can you please tell me what that means,
I think sum(a[j:i] means find the some from a[j] to a[i]
But what is the meaning of the part (j,i)?

Nov 16 '08 #1
15 1656
On Sat, Nov 15, 2008 at 8:41 PM, si***************@gmail.com
<si***************@gmail.comwrote:
Hi,

I am trying to understand the following line:
# a is an integer array

max([(sum(a[j:i]), (j,i))
This code isn't valid. You have a [ with no closing ].

Cheers,
Chris
--
Follow the path of the Iguana...
http://rebertia.com
>
Can you please tell me what that means,
I think sum(a[j:i] means find the some from a[j] to a[i]
But what is the meaning of the part (j,i)?

--
http://mail.python.org/mailman/listinfo/python-list
Nov 16 '08 #2
On Nov 16, 3:41*pm, "silverburgh.me...@gmail.com"
<silverburgh.me...@gmail.comwrote:
Hi,

I am trying to understand the following line:
# a is an integer array

max([(sum(a[j:i]), (j,i))

Can you please tell me what that means,
I think sum(a[j:i] means find the some from a[j] to a[i]
But what is the meaning of the part (j,i)?
0. "integer array" is a very loose term in Python. Fortunately the
answer to your question is not affected by that.
1. Sorry, the max... line is not syntactically correct; there are two
[s and only one ]; there are 4 (s and only 3 )s. Try copying the line
and pasting, not re-typing.
2. I'm not going to try to guess how to fix the bracket mismatches.
3. Note that you have left off a ) from your question about "sum" ...
it probably should be sum([j:i]).
4. That is the sum (not "some"!!) of a[j] to a[i-1] both inclusive.
It's a standard idiom in Python for the end of a range to be expressed
as the first unused element.
5. Even after fixing the bracket mismatches, it looks like you will
have an expression whose value is thrown away. Perhaps you might like
to give us a few lines of context before and after the line of
interest.
Nov 16 '08 #3
This is the full source code:
def A(w, v, i,j):
if i == 0 or j == 0: return 0
if w[i-1] j: return A(w, v, i-1, j)
if w[i-1] <= j: return max(A(w,v, i-1, j), v[i-1] + A(w,v, i-1, j - w[i-1]))

I am reading this blog

http://20bits.com/articles/introduct...c-programming/
On Sat, Nov 15, 2008 at 10:54 PM, Chris Rebert <cl*@rebertia.comwrote:
On Sat, Nov 15, 2008 at 8:41 PM, si***************@gmail.com
<si***************@gmail.comwrote:
>Hi,

I am trying to understand the following line:
# a is an integer array

max([(sum(a[j:i]), (j,i))

This code isn't valid. You have a [ with no closing ].

Cheers,
Chris
--
Follow the path of the Iguana...
http://rebertia.com
>>
Can you please tell me what that means,
I think sum(a[j:i] means find the some from a[j] to a[i]
But what is the meaning of the part (j,i)?

--
http://mail.python.org/mailman/listinfo/python-list
Nov 16 '08 #4
See below.

On Nov 15, 11:15*pm, "Meryl Silverburgh" <silverburgh.me...@gmail.com>
wrote:
This is the full source code:
def A(w, v, i,j):
* * if i == 0 or j == 0: return 0
* * if w[i-1] j: *return A(w, v, i-1, j)
* * if w[i-1] <= j: return max(A(w,v, i-1, j), v[i-1] + A(w,v, i-1,j - w[i-1]))

I am reading this blog

http://20bits.com/articles/introduct...c-programming/

On Sat, Nov 15, 2008 at 10:54 PM, Chris Rebert <c...@rebertia.comwrote:
On Sat, Nov 15, 2008 at 8:41 PM, silverburgh.me...@gmail.com
<silverburgh.me...@gmail.comwrote:
Hi,
I am trying to understand the following line:
# a is an integer array
max([(sum(a[j:i]), (j,i))
This code isn't valid. You have a [ with no closing ].
Cheers,
Chris
--
Follow the path of the Iguana...
http://rebertia.com
Can you please tell me what that means,
I think sum(a[j:i] means find the some from a[j] to a[i]
But what is the meaning of the part (j,i)?
--
http://mail.python.org/mailman/listinfo/python-list

if w[i-1] <= j: return max(A(w,v, i-1, j), v[i-1] + A(w,v, i-1, j -w[i-1]))
This means:

Calculate 'A(w,v, i-1, j)', calculate 'v[i-1] + A(w,v, i-1, j - w
[i-1])', and return whichever is larger.
Nov 16 '08 #5
silverburgh:
max([(sum(a[j:i]), (j,i))
Other people have already answered you so I'll add only a small note:
today the max() function has a key optional attribute, so that code
can also be written as:

max(((j, i) for ...), key=lambda (j, i): sum(a[j : i]))

I think you have copied that part from code that runs in O(n^2);
remember that you can find the max subarray with a well known O(n)
algorithm too.

Bye,
bearophile
Nov 16 '08 #6
On Nov 16, 4:15*pm, "Meryl Silverburgh" <silverburgh.me...@gmail.com>
wrote:
This is the full source code:
def A(w, v, i,j):
* * if i == 0 or j == 0: return 0
* * if w[i-1] j: *return A(w, v, i-1, j)
* * if w[i-1] <= j: return max(A(w,v, i-1, j), v[i-1] + A(w,v, i-1,j - w[i-1]))
Huh??? There is only a very slight resemblance to the code that you
posted previously ... both contain 'max, 'i', and 'j'
I am reading this blog

http://20bits.com/articles/introduct...c-programming/
I suggest that you don't bother reading a blog written by somebody who
(presumably consciously) keyed in that "if w[i-1] <= j: " above.

Oh, very interesting, it contains:
def msum(a):
return max([(sum(a[j:i]), (j,i)) for i in range(1,len(a)+1) for j
in range(i)])

Would you care to tell us which part of which function you are now
trying to understand?
Nov 16 '08 #7
On Sun, 16 Nov 2008 01:50:16 -0800, John Machin wrote:
def A(w, v, i,j):
Â* Â* if i == 0 or j == 0: return 0
Â* Â* if w[i-1] j: Â*return A(w, v, i-1, j)
Â* Â* if w[i-1] <= j: return max(A(w,v, i-1, j), v[i-1] +
A(w,v, i-1, j - w[i-1]))
>I am reading this blog

http://20bits.com/articles/introduct...c-programming/

I suggest that you don't bother reading a blog written by somebody who
(presumably consciously) keyed in that "if w[i-1] <= j: " above.
That is a translation of standard terminology for a hybrid function.
Mathematics doesn't have an "else", so you write hybrid functions by
enumerating each branch as an if.

While it's not especially good Python technique, it's a perfectly
idiomatic mathematical expression, and shouldn't be the basis for
dismissing an entire blog.
--
Steven
Nov 16 '08 #8
On Nov 16, 9:31*pm, Steven D'Aprano <st...@REMOVE-THIS-
cybersource.com.auwrote:
On Sun, 16 Nov 2008 01:50:16 -0800, John Machin wrote:
def A(w, v, i,j):
* * if i == 0 or j == 0: return 0
* * if w[i-1] j: *return A(w, v, i-1, j)
* * if w[i-1] <= j: return max(A(w,v, i-1, j), v[i-1] +
* * * A(w,v, i-1, j - w[i-1]))
I am reading this blog
>http://20bits.com/articles/introduct...c-programming/
I suggest that you don't bother reading a blog written by somebody who
(presumably consciously) keyed in that "if w[i-1] <= j: " above.

That is a translation of standard terminology for a hybrid function.
Mathematics doesn't have an "else", so you write hybrid functions by
enumerating each branch as an if.
An else is not required.
if w[i-1] j:
return A(w, v, i-1, j)
return max(A(w,v, i-1, j), v[i-1] + A(w,v, i-1, j - w[i-1]))
While it's not especially good Python technique, it's a perfectly
idiomatic mathematical expression, and shouldn't be the basis for
dismissing an entire blog.
He's meant to be writing Python code, not mathematical expressions.
Nov 16 '08 #9
On Sun, 16 Nov 2008 02:41:03 -0800, John Machin wrote:
On Nov 16, 9:31Â*pm, Steven D'Aprano <st...@REMOVE-THIS-
cybersource.com.auwrote:
>On Sun, 16 Nov 2008 01:50:16 -0800, John Machin wrote:
def A(w, v, i,j):
Â* Â* if i == 0 or j == 0: return 0
Â* Â* if w[i-1] j: Â*return A(w, v, i-1, j) if w[i-1] <= j: return
Â* Â* max(A(w,v, i-1, j), v[i-1] +
Â* Â* Â* A(w,v, i-1, j - w[i-1]))
I am reading this blog
>>http://20bits.com/articles/introduct...c-programming/
I suggest that you don't bother reading a blog written by somebody
who (presumably consciously) keyed in that "if w[i-1] <= j: " above.

That is a translation of standard terminology for a hybrid function.
Mathematics doesn't have an "else", so you write hybrid functions by
enumerating each branch as an if.

An else is not required.
if w[i-1] j:
return A(w, v, i-1, j)
return max(A(w,v, i-1, j), v[i-1] + A(w,v, i-1, j - w[i-1]))
Which is also not valid terminology for hybrid functions.

>While it's not especially good Python technique, it's a perfectly
idiomatic mathematical expression, and shouldn't be the basis for
dismissing an entire blog.

He's meant to be writing Python code, not mathematical expressions.
And he's written Python code. Perfectly valid Python code. Just because
it is not what you consider to be idiomatic Python code isn't a good
reason to dismiss his entire blog.

What you've done is rather like me saying that because you failed to use
a colon after "required", and therefore haven't written what *I* consider
good English style, not only is your specific post best avoided, but
*all* your posts should be avoided. I trust you understand the logical
fallacy I would be making, which you have already made.

http://en.wikipedia.org/wiki/Style_o...stance_fallacy

--
Steven
and now begins the arguments as to whether it is a fallacy, and if so, if
it is the fallacy I have said it is...

Nov 16 '08 #10
On Nov 16, 11:04*pm, Steven D'Aprano <st...@REMOVE-THIS-
cybersource.com.auwrote:
On Sun, 16 Nov 2008 02:41:03 -0800, John Machin wrote:
On Nov 16, 9:31*pm, Steven D'Aprano <st...@REMOVE-THIS-
cybersource.com.auwrote:
On Sun, 16 Nov 2008 01:50:16 -0800, John Machin wrote:
def A(w, v, i,j):
* * if i == 0 or j == 0: return 0
* * if w[i-1] j: *return A(w, v, i-1, j) if w[i-1] <= j:return
* * max(A(w,v, i-1, j), v[i-1] +
* * * A(w,v, i-1, j - w[i-1]))
I am reading this blog
>http://20bits.com/articles/introduct...c-programming/
I suggest that you don't bother reading a blog written by somebody
who (presumably consciously) keyed in that "if w[i-1] <= j: " above.
That is a translation of standard terminology for a hybrid function.
Mathematics doesn't have an "else", so you write hybrid functions by
enumerating each branch as an if.
An else is not required.
* * if w[i-1] j:
* * * *return A(w, v, i-1, j)
* * return max(A(w,v, i-1, j), v[i-1] + A(w,v, i-1, j - w[i-1]))

Which is also not valid terminology for hybrid functions.
I couldn't care less. It's valid and efficient (compared to the
original) Python.
While it's not especially good Python technique, it's a perfectly
idiomatic mathematical expression, and shouldn't be the basis for
dismissing an entire blog.
He's meant to be writing Python code, not mathematical expressions.

And he's written Python code. Perfectly valid Python code. Just because
it is not what you consider to be idiomatic Python code isn't a good
reason to dismiss his entire blog.

What you've done is rather like me saying that because you failed to use
a colon after "required", and therefore haven't written what *I* consider
good English style, not only is your specific post best avoided, but
*all* your posts should be avoided. I trust you understand the logical
fallacy I would be making, which you have already made.
Nothing to do with style. It was the screaming inefficiency of:
if non_trivial_condition: return x
if not non_trivial_condition: return y
that fired me up.
http://en.wikipedia.org/wiki/Style_o...stance_fallacy
Quoted Wikipedia -instant disqualification -you lose. Good night.

Nov 16 '08 #11
On Nov 16, 7:34*am, John Machin <sjmac...@lexicon.netwrote:
On Nov 16, 11:04*pm, Steven D'Aprano <st...@REMOVE-THIS-
http://en.wikipedia.org/wiki/Style_o...stance_fallacy

Quoted Wikipedia -instant disqualification -you lose. Good night.
When quoting wikipedia became the new Godwin's law ?? :)

George
Nov 16 '08 #12
On Nov 17, 5:26*am, George Sakkis <george.sak...@gmail.comwrote:
When quoting wikipedia became the new Godwin's law ?? :)
Probably at the point the editors started becoming revisionists and
culling anything they didn't consider notable enough.
Nov 17 '08 #13
Benjamin Kaplan wrote:
If you really believe that, you haven't been following this list long
enough. Every terminology dispute always includes at least 1 Wikipedia
link.

Also, you might want to look at this study:
http://news.cnet.com/2100-1038_3-5997332.html
That study has been disputed; see the links at the top of
<http://en.wikipedia.org/wiki/Reliability_of_Wikipedia>.

/me ducks
--
Nov 17 '08 #14
On Nov 17, 11:40*am, Matt Nordhoff <mnordh...@mattnordhoff.comwrote:
That study has been disputed; see the links at the top of
<http://en.wikipedia.org/wiki/Reliability_of_Wikipedia>.
Now, if there was any independent refutation of the original study
that isn't based on Britannica's - not that I'm outright accusing them
of any bias here :) - that might make a reasonable disputation...
Nov 17 '08 #15
On Sun, 16 Nov 2008 04:34:40 -0800, John Machin wrote:
Nothing to do with style. It was the screaming inefficiency of:
if non_trivial_condition: return x
if not non_trivial_condition: return y
that fired me up.
"Screaming inefficiency"?

Try "micro-optimization". The difference in execution time between "if
x... if not x..." versus "if x... else..." on my slow, underpowered
machine is about 10**-8 seconds. If that's your idea of "screaming
inefficiency" I can't understand why you're programming in Python in the
first place.

Of course, if x is an expensive function call (say, a network lookup or
database query rather than a relatively cheap list indexing operation)
then the more readable, Pythonic solution will also be significantly
faster. There's no doubt that it should be preferred -- I'm not defending
it, as such, just pointing out the over-reaction of dismissing what is a
generally well-written and thought-out article on the basis of a
triviality.
>http://en.wikipedia.org/wiki/Style_o...stance_fallacy

Quoted Wikipedia -instant disqualification -you lose. Good night.

Oh gosh, well, you've certainly proven your case, how could I be so
stupid? My apology for thinking that you were acting like an arrogant,
bad-tempered dick. I don't know *what* I was thinking.

--
Steven
who would link to Wikipedia for the definition of sarcasm except I've
already lost once in this thread and that's enough.
Nov 18 '08 #16

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

Similar topics

3
by: Graham Nicholls | last post by:
Hi, I'm trying to size a jpeg file. The file size is held in a short (2 byte integer) at a certain offset. Once I've found these two bytes (they're in MSB,LSB order), I need to convert them to...
9
by: Roy Smith | last post by:
I'm working on a prototype of a new application in Python. At some point, if this ever turns into a product, the powers that be will almost certainly demand that it be done in Perl. My job will...
10
by: Jeff Wagner | last post by:
I am in the process of learning Python (obsessively so). I've been through a few tutorials and read a Python book that was lent to me. I am now trying to put what I've learned to use by rewriting...
6
by: Fuzzyman | last post by:
Ok.... so I might be a windoze user trying to program CGIs for a Linux server.... but Python doesn't seem to go out of it's way to make understanding file attributes difficult. The python manual is...
2
by: Dhruva Hein | last post by:
Hi. I am trying to understand a section of code written for Plone and I am having problems understanding the Python syntax in a few of the following lines. I'd be grateful if someone could help...
4
by: John Salerno | last post by:
Here's some code from Python in a Nutshell. The comments are lines from a previous example that the calls to super replace in the new example: class A(object): def met(self): print 'A.met' ...
0
by: Thomas Ploch | last post by:
Hello folks, I am thinking about reading and understanding the Source Code of Python, but where would it be best to start? Possibly someone can give me a little hint. I am getting into...
3
by: Greg Corradini | last post by:
Hello, I'm trying to perform a simple insert statement into a table called Parcel_Test (see code below). Yet, I get an error message that I've never seen before (see traceback below). I've tried...
6
by: Steven W. Orr | last post by:
Given the following code: (I hope it's as simple as possible) :-) #! /usr/bin/python import new class BASE: def __init__( self ): print 'Hello from BASE init' def m1( self ): print 'M1 Base:...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...

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.