473,836 Members | 1,508 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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
15 1679
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_con dition: return x
if not non_trivial_con dition: return y
that fired me up.
http://en.wikipedia.org/wiki/Style_o...stance_fallacy
Quoted Wikipedia -instant disqualificatio n -you lose. Good night.

Nov 16 '08 #11
On Nov 16, 7:34*am, John Machin <sjmac...@lexic on.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 disqualificatio n -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.or g/wiki/Reliability_of_ Wikipedia>.

/me ducks
--
Nov 17 '08 #14
On Nov 17, 11:40*am, Matt Nordhoff <mnordh...@matt nordhoff.comwro te:
That study has been disputed; see the links at the top of
<http://en.wikipedia.or g/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_con dition: return x
if not non_trivial_con dition: 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 disqualificatio n -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
11050
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 an integer - now I know that in C I'd just cast a pointer to the offset to a short, and that python doesn't cast, so how can I extract the value from a stream of bytes. I've looked at python.org/Doc/current (I'm using 2.3b1), but can't find...
9
2148
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 be to convince them otherwise. The basic design of the application is object oriented. I've never used Perl's OO features, so I'm not in a good position to make a comparison of the two languages from an OO point of view. Can somebody who's...
10
3114
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 that Numerology program I wrote years ago in VB. There are times I am totally stuck (for instance, I just had an idea to put the numerical values of the alphabet and months of the year in a dictionary located in a function. Then, I can import the...
6
11493
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 appalling in this are a :-( Anyway - I think I've finally worked out that the correct way to get (rather than set) the mode of a file is : from stat import * S_IMODE(os.stat(filepath))
2
1349
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 me understand what's happening in the lines I've marked. I can't see how the dictionary is built or how the lists make sense in python. Thanks in advance.
4
1565
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' class B(A): def met(self): print 'B.met'
0
916
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 socketmodule.c a little bit at the moment, but thats not what I want. Greetz, Thomas -- Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer
3
1597
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 to put a semicolon at the end of the sql statement, but with no luck. Any ideas from more experienced mx.ODBC users? CODE TRACEBACK
6
1412
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: Self = ', self def m1replace( self ):
0
9814
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10836
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10543
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10249
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9368
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6976
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5819
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
4009
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3108
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.