Hi,
If I install python 3.0 dmg, will it wipe out the existing python
installation on macos 10.5 (i don't know how the original python was
installed ( i think it is version 2.5).
Thank you.
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I run 'python -v' on Macos 10.5 but I get this error :
# can't create /System/Library/Frameworks/Python.framework/Versions/
2.5/lib/python2.5/encodings/utf_8.pyc
Can you please tell me how to fix it?
And why I am seeing a lot of 'install' message' when i run 'python -
v'? I don't think I se
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/introduction-to-dynamic-programming/
On
i am trying to use python to walk thru each subdirectory from a top
directory. Here is my script:
savedPagesDirectory = "/home/meryl/saved_pages/data"
dir=open(savedPagesDirectory, 'r')
for file in dir:
if (isdir(file)):
# get the full path of the file
fileName = savedPages
On Feb 19, 2:22 pm, "Martin Blume" <[EMAIL PROTECTED]> wrote:
> <[EMAIL PROTECTED]> schrieb
>
> > I have a function called 'test' defined in A.py.
> > How can I call that function test in my another file B.py?
>
> In B.py:
>
> import A
>
> A.test()
>
> HTH
> Martin
But Do I need to put A.py and B.
Hi,
I have a function called 'test' defined in A.py.
How can I call that function test in my another file B.py?
Thank you.
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I have question about strftime. I am trying to print the current time
in this format:
date = strftime("%Y%m%d_%H%M%S", gmtime())
print date
I run the script at 2:18 pm, but I get this: 20070210_201837
Can you please tell me why I get '20'? instead of '14' (which is 2:00
pm)?
Thank you.
-
Hi,
Can you please tell me how Use python to process XML file?
The example I find is build a DOM, but I just need to do it in SAX
based, how can I do that?
For example, I have a xml file like this:
text
text
text
text
text
text
text
For i want to process the node in the order they
Can you please tell me what is the meaning this error in general?
UnboundLocalError: local variable 'colorIndex' referenced before
assignment
In my python script,
I have a variable define and init to 0, like this
colorIndex = 0
and in one of my functions, I increment it by 1
def myFunc
co
Can you please tell me what is the meaning of
UnboundLocalError: local variable 'colorIndex' referenced before
assignment
in general?
--
http://mail.python.org/mailman/listinfo/python-list
okay, I try you suggestion, and re-write my code like this:
colors = ["#ff", "#00FF00", "#FF"]
colorIndex = 0
def getText(nodelist):
for str in strings:
print colors[colorIndex % colors.length]
colorIndex += 1
but i get this error
I have a string array:
colors = ["#ff", "#00FF00", "#FF"]
colorIndex = 0;
and I want to loop thru each element of colors
for str in strings:
print colors[colorIndex++ % colors.length]
But i get an invalid syntax error when I execute the script:
print colors[colorIndex++ % colors.l
12 matches
Mail list logo