On 04/29/2013 09:17 PM, alternativ...@rocketmail.com wrote:
I thought 'clause' was reffering to the 'if __name__ == "__main__":' thing in
English, but apparently not.
Well except the import and the 'globalization' of my variables, every thing is
idented.
No clue whom you think you're replyin
On Mon, Apr 29, 2013 at 6:43 PM, MRAB wrote:
> By the way, there's a bug in 'choosecave': what happens if the user
> enters, say, '3'?
Then they lose. :-)
--
http://mail.python.org/mailman/listinfo/python-list
I thought 'clause' was reffering to the 'if __name__ == "__main__":' thing in
English, but apparently not.
Well except the import and the 'globalization' of my variables, every thing is
idented.
--
http://mail.python.org/mailman/listinfo/python-list
On Mon, 29 Apr 2013 17:22:28 -0700, eschneider92 wrote:
> How do I make the following program repeat twice instead of asking
> whether the player wants to play again?
You change something in the folowing two lines:
playagain='yes'
while playagain=='yes':
What you change and how you change it is
On 30/04/2013 01:22, eschneide...@comcast.net wrote:
How do I make the following program repeat twice instead of asking whether the
player wants to play again?
import random
import time
def intro():
print('You spot 2 caves in the distance.')
print ('You near 2 cave entrances..')
On 04/29/2013 08:22 PM, eschneide...@comcast.net wrote:
How do I make the following program repeat twice instead of asking whether the
player wants to play again?
Turn it into a function call, and call that function twice from
top-level. Or, more generally,
for i in range(2):
doit()
How do I make the following program repeat twice instead of asking whether the
player wants to play again?
import random
import time
def intro():
print('You spot 2 caves in the distance.')
print ('You near 2 cave entrances..')
time.sleep(1)
print('You proceed even nearer...')
On 4/29/2013 5:47 AM, c...@isbd.net wrote:
case). Here's the traceback:-
File "/usr/local/lib/python2.7/dist-packages/gallery/picture.py", line 361,
> in createPictureHTML file.write("".join(html).encode('utf-8'))
> UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position
7
On Tue, Apr 30, 2013 at 4:44 AM, wrote:
> Yeah I did, but I globalized my variables, I've got only functions, and not
> methods, and my clause seems to work so I don't know why it doesn't work.
I don't know what you mean by your "clause", and I think we have a
language barrier here. (Though you
On 04/29/2013 12:30 PM, Peter Rowat wrote:
This must be a trivial question:
I have "import numpy as np" in the python startup file.
A file called mod1.py contains "def myfn..."
and inside myfn there is a call to, say, "np.convolve".
Interactively:
python
(numpy imported as np)
impor
Hi Robert,
Am 29.04.13 12:25, schrieb Robert Flintham:
I’ve found this (TkDND):
http://wiki.tcl.tk/2768
> But I don’t know how to implement this in Python. The Windows binary
> for it comes as a set of “.tcl” files and a single “.dll” file.
> 2.direct implementation of the Tcl file [tk.eval(‘
On 04/29/2013 04:03 PM, Dave Angel wrote:
Please ignore my previous response, obviously I misread your question
entirely. I've never used a startup file, so I misread it as "script file".
Yes, you need a separate import from any module that references numpy.
Don't worry about performance, s
On 04/29/2013 03:30 PM, Peter Rowat wrote:
This must be a trivial question:
I have "import numpy as np" in the python startup file.
A file called mod1.py contains "def myfn..."
and inside myfn there is a call to, say, "np.convolve".
Interactively:
python
(numpy imported as np)
impor
On 4/29/2013 3:30 PM, Peter Rowat wrote:
This must be a trivial question:
I have "import numpy as np" in the python startup file.
A file called mod1.py contains "def myfn..."
and inside myfn there is a call to, say, "np.convolve".
Interactively:
python
(numpy imported as np)
import
On Mon, 29 Apr 2013 12:30:29 -0700, Peter Rowat wrote:
> This must be a trivial question:
>
> I have "import numpy as np" in the python startup file.
That only runs interactively. It does not run when you execute a script.
> A file called mod1.py contains "def myfn..."
> and inside myfn there
This must be a trivial question:
I have "import numpy as np" in the python startup file.
A file called mod1.py contains "def myfn..."
and inside myfn there is a call to, say, "np.convolve".
Interactively:
>python
(numpy imported as np)
>import mod1
>
>mod1.myfn(...)
Error: global name "n
Yeah I did, but I globalized my variables, I've got only functions, and not
methods, and my clause seems to work so I don't know why it doesn't work.
--
http://mail.python.org/mailman/listinfo/python-list
Jimmie He於 2013年4月30日星期二UTC+8上午1時20分49秒寫道:
> I'm trying to read in the BMP data by the the code below,and I'm check the
> data array with WINHEX,and it is correct,but which confuse me is why the size
> is 0x180,but the actual picture should be 48*48 = 0x120 bytes because I use
> 1-bit BMP not th
On 29/04/2013 18:20, Jimmie He wrote:
I'm trying to read in the BMP data by the the code below,and I'm
check the data array with WINHEX,and it is correct,but which confuse
me is why the size is 0x180,but the actual picture should be 48*48 =
0x120 bytes because I use 1-bit BMP not the 24bit BMP,co
Jimmie He wrote:
>I'm trying to read in the BMP data by the the code below,and I'm check
>the data array with WINHEX,and it is correct,but which confuse me is
>why the size is 0x180,but the actual picture should be 48*48 = 0x120
>bytes because I use 1-bit BMP not the 24bit BMP,coul
On Tue, Apr 30, 2013 at 3:20 AM, Jimmie He wrote:
> handle1.close
I haven't looked at the rest of the code, but be careful of this: You
aren't actually *calling* this function. That might be your problem
and it might not, but try fixing it (add the parentheses, even though
there's nothing
On Tue, Apr 30, 2013 at 3:32 AM, wrote:
> It definetly helped, windows don't pop up anymore, but now it doesn't make
> any sound anymore. Could it be because of a local (non-global) variable ?
Did you read what I linked you to? There are rules to using
multiprocessing; more of them on Windows.
It definetly helped, windows don't pop up anymore, but now it doesn't make any
sound anymore. Could it be because of a local (non-global) variable ?
--
http://mail.python.org/mailman/listinfo/python-list
I'm trying to read in the BMP data by the the code below,and I'm check the
data array with WINHEX,and it is correct,but which confuse me is why the size
is 0x180,but the actual picture should be 48*48 = 0x120 bytes because I use
1-bit BMP not the 24bit BMP,could any one give some hints?
---
On 29/04/2013 16:31, alternativ...@rocketmail.com wrote:
My full code is :
#Import
from tkinter import *
import wave
import winsound
import multiprocessing
#Initialisation
fenetre=Tk()
frame = Frame(fenetre, width=200, height=100)
instance = 'Instance'
#Fonctions
def key(event):
insta
My full code is :
#Import
from tkinter import *
import wave
import winsound
import multiprocessing
#Initialisation
fenetre=Tk()
frame = Frame(fenetre, width=200, height=100)
instance = 'Instance'
#Fonctions
def key(event):
instance = 'Instance'
hitkey = event.char
instance =
> How strange. I think it must be something to do with the gmane
> interface between news and mail then.
Probably. It was borked in Gmail as well...
Skip
--
http://mail.python.org/mailman/listinfo/python-list
Robert Kern wrote:
> On 2013-04-29 13:59, c...@isbd.net wrote:
> > Dave Angel wrote:
> >> On 04/29/2013 05:47 AM, c...@isbd.net wrote:
> >>
> >> A couple of generic comments: your email program made a mess of the
> >> traceback by appending each source line to the location information.
> >>
> >
On 2013-04-29 13:59, c...@isbd.net wrote:
Dave Angel wrote:
On 04/29/2013 05:47 AM, c...@isbd.net wrote:
A couple of generic comments: your email program made a mess of the
traceback by appending each source line to the location information.
What's me email program got to do with it? :-)
Dave Angel wrote:
> On 04/29/2013 05:47 AM, c...@isbd.net wrote:
>
> A couple of generic comments: your email program made a mess of the
> traceback by appending each source line to the location information.
>
What's me email program got to do with it? :-) I'm using a dedicated
newsreader (
Andrew Berg wrote:
> On 2013.04.29 04:47, c...@isbd.net wrote:
> > If I understand correctly the encode() is saying that it can't
> > understand the data in the html because there's a character 0xc3 in it.
> > I *think* this means that the é is encoded in UTF-8 already in the
> > incoming data str
On 2013-04-29, Neil Cerutti wrote:
> find returns None when it doesn't find what you asked for. So you
> can't check the .text attribute right away unless you want an
> exception thrown. I deal with these annoyances like this:
>
> sepelem =
> content.find(".//{http://www.huawei.com.cn/schema/comm
On 2013-04-29, Chris Withers wrote:
> There aren't any, because there are no changes. Applications
> written for 0.6.x will still work without change when using
> 0.9.2.
The Python 3 support is greatly appreciated. I've started using
the xlrd package recently, and it's made the life of a few of m
On 2013-04-29, Ombongi Moraa Fe wrote:
>
> Good Afternoon,
>
> Among other elements values that my script finds is value for sepid
>
> sepid = content.find(".//{http://www.huawei.com.cn/schema/common/v2_1}sepid
> ").text
>
>
> however, if i pass xml data that DOES NOT contain sepid element, i get
Yes, I already find that scipy.ndimage.interpolation.affine_transform
will solve this (but thank you Robert anyway!).
Just for others (if somebody will find this thread):
The 'matrix' parameter is transformation matrix for shear
transformation. For more detailes see:
http://en.wikipedia.org/wiki/S
Hi Stefan, Group
Thanks for the thumbs up.
Worked perfectly.
Saludos
Ombongi Moraa Faith
On 29 April 2013 14:22, Stefan Holdermans wrote:
> Ombongi,
>
> > however, if i pass xml data that DOES NOT contain sepid element, i get
> an error:
> >
> > Traceback (most recent call last):
> > File
On 04/29/2013 05:47 AM, c...@isbd.net wrote:
A couple of generic comments: your email program made a mess of the
traceback by appending each source line to the location information.
Please mention your Python version & OS. Apparently you're running 2.7
on Linux or similar.
I am debugging
Ombongi,
> however, if i pass xml data that DOES NOT contain sepid element, i get an
> error:
>
> Traceback (most recent call last):
> File "/usr/local/bin/receive.py", line 21, in
> sepid =
> content.find(".//{http://www.huawei.com.cn/schema/common/v2_1}sepid";).text
> AttributeError: '
c...@isbd.net wrote:
> I am debugging some code that creates a static HTML gallery from a
> directory hierarchy full of images. It's this package:-
> https://pypi.python.org/pypi/Gallery2.py/2.0
>
>
> It's basically working and does pretty much what I want so I'm happy to
> put some effort i
Hello all,
Sorry to post such a generic question, but after searching the interwebs I'm
not really any wiser about how to start with this.
I'm currently on:
Windows XP
Python 2.7
I'm trying to create a small window in Python 2.7, that when you drop a file
onto it from Windows explorer returns
Good Afternoon,
Among other elements values that my script finds is value for sepid
sepid = content.find(".//{http://www.huawei.com.cn/schema/common/v2_1}sepid
").text
however, if i pass xml data that DOES NOT contain sepid element, i get an
error:
Traceback (most recent call last):
File "/u
On 2013.04.29 04:47, c...@isbd.net wrote:
> If I understand correctly the encode() is saying that it can't
> understand the data in the html because there's a character 0xc3 in it.
> I *think* this means that the é is encoded in UTF-8 already in the
> incoming data stream (should be as my system is
I am debugging some code that creates a static HTML gallery from a
directory hierarchy full of images. It's this package:-
https://pypi.python.org/pypi/Gallery2.py/2.0
It's basically working and does pretty much what I want so I'm happy to
put some effort into it and fix things.
The problem
On 26/04/2013 20:37, Ondrej Ján wrote:
If users have python-xlrd installed, package maintainer should release
only updates, which are API compatible with older versions.
Right, the only API change between 0.6 and 0.9 is the removal of the
'pickleable' parameter to open_workbook. However, th
On Sun, 28 Apr 2013 23:39:53 -0700, root.phidgets wrote:
> Hi Guys. I need some help with the coding for my program.
>
> This coding is suppose to sort text file according to the latest date
> and send the latest file. Attach it to my email and sent to another
> email account. But somehow the pro
45 matches
Mail list logo