Monika Jisswel wrote:
You know bob, you are very clever
Yes. I've observed that before.
, I have used RAM disk for realtime recording of audio before but it
never occured to me to use it for light jobs like this one, I just
compeletely ignored it as an option & by the way this openes a lot of
You know bob, you are very clever, I have used RAM disk for realtime
recording of audio before but it never occured to me to use it for light
jobs like this one, I just compeletely ignored it as an option & by the way
this openes a lot of doors for many of my other programs.
but wouldn't it be ver
Monika Jisswel wrote:
Hi everyone,
In my program I have this code :
self.run_cmd_0 = subprocess.Popen(self.cmd_0, stdout =
subprocess.PIPE, shell = True) #(1)
self.run_cmd_1 = subprocess.Popen(self.TOCOL, stdin =
self.run_cmd_0.stdout, stdout = subprocess.PIPE, shell = True)
Alan Gauld btinternet.com> writes:
> To the OP:
> Are you importing any other modules? Is this a specific application's
> code you are looking at?
>
Thanks Alan. You're right. I was reading Ulipad's source code.
___
Tutor maillist - Tutor@python.or
Kent Johnson tds.net> writes:
> You have to find where tr() is being imported. From PyShell type
> tr.__module__
> that should print the name of the module containing tr().
>
Thanks Kent. Actually it isn't PyShell. It is in Ulipad's (Ulipad is a freeware
code editor) Python shell. I followed you
the fact that it fails shoul be due to some windows restriction about trash
& some hidden files,
to bypass that you can add a filter in here
def walk(dir):
for name in os.listdir(dir):
#the following line is the filter
if name != 'Trash can' or name != 'some hidden directory name':
I am learning pygame using begining game development w/ python and pygame.
I am doing 'Hello World Redux"
#!/usr/bin/env python
background_image_filename = 'sushiplate.jpg'mouse_image_filename = 'fugu.png'
import pygamefrom pygame.locals import *from sys import exit
pygame.init()
screen =
pyga
Hey Monika
How about Matplotlib AKA Pylab?
http://matplotlib.sourceforge.net/
-Patrick
Monika Jisswel wrote:
Hi Again,
What is the best library for drawing graphs & diagrams to ilustrate
some statistics ?
___
Hi Again,
What is the best library for drawing graphs & diagrams to ilustrate some
statistics ?
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
Many thanks for the tutor mailing-list members for their replies,
The EasyGui is just what I was looking for.
Regards
Eli Brosh
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
Hi!
My demo is from wspython. The Hebrew window messed up my reading and now
I have included the imports and the initial assignment. You can place them
in caps for global vars, but place them inside a class so they are
self...calls.
Hello,
I am starting to use Python+NumPy+SciPy+Matplotlib
Hi!
My demo is from wspython.
Hello,
I am starting to use Python+NumPy+SciPy+Matplotlib as a substitute to MATLAB.
I need a simple GUI that can help me to open files and save file i.e. something
similar to uigetfile in MATLAB.
Is there a simple script that opens a window with a possibil
IMHO the Linux OS itself relays heavily on python in some way or the other,
but as far as the boot process is concerned I think you should consider the
fact that it was engeneered by very smart poeple, very security aware
poeple, so you will have to give a really good ALTERNATIVE to thier
engeneeri
On Fri, Jul 4, 2008 at 12:14 PM, Akanskha Kumar
<[EMAIL PROTECTED]> wrote:
> how can i make tic tac toe game using python programing.
>
There is an excellent tic-tac-toe tutorial in Michael Dawson's book,
Python Programming for the Absolute Beginner Second Edition
(ISBN-13: 978-1-59863-112-8).Chap
Go for wxPython, they have a pretty good tutorial on thier website (
wxpython.org)
If you can use Python_Numpy_Scipy_Matplotlib then I can assure you that
you will learn wxpython in a matter of minutes.
>
> 2008/7/4 Eli Brosh <[EMAIL PROTECTED]>:
>
>> Hello,
>> I am starting to use Python+NumP
Hi!
My demo is from wspython.
Hello,
I am starting to use Python+NumPy+SciPy+Matplotlib as a substitute to MATLAB.
I need a simple GUI that can help me to open files and save file i.e. something
similar to uigetfile in MATLAB.
Is there a simple script that opens a window with a possibilit
"Akanskha Kumar" <[EMAIL PROTECTED]> wrote
how can i make tic tac toe game using python programing.
Do you know how to program at all?
How much Python do you know?
Is this a homework assignment?
We need to know of these before we can give you the best answer.
If you are experienced uin prog
"Eli Brosh" <[EMAIL PROTECTED]> wrote
I need a simple GUI that can help me to open files
and save file i.e. something similar to uigetfile in MATLAB.
Google for easygui I think it will do what you want.
Otherwise any GUI toolkit will have similar dialiogs but
will require that you write a
"Kent Johnson" <[EMAIL PROTECTED]> wrote
tr() is not a standard part of Python. My guess is that it is a
wrapper function that helps with localization.
So far as I can see it's not a native part of wxPython either - at
least its not mentioned in the book anywhere and I've
never seen/used it pe
Hi everyone,
In my program I have this code :
self.run_cmd_0 = subprocess.Popen(self.cmd_0, stdout = subprocess.PIPE,
> shell = True) #(1)
> self.run_cmd_1 = subprocess.Popen(self.TOCOL, stdin =
> self.run_cmd_0.stdout, stdout = subprocess.PIPE, shell = True)#(2)
> self.result_0 = StringI
how can i make tic tac toe game using python programing.
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
Hello,
I am starting to use Python+NumPy+SciPy+Matplotlib as a substitute to MATLAB.
I need a simple GUI that can help me to open files and save file i.e. something
similar to uigetfile in MATLAB.
Is there a simple script that opens a window with a possibility to browse
through the file system
On Fri, Jul 4, 2008 at 6:25 AM, Kelie <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I see a lots tr('some string') in codes, especially the ones related to
> wxPython. Where is this tr function defined and what does it do? To make the
> argument a raw string?
tr() is not a standard part of Python. My gu
Hello,
I see a lots tr('some string') in codes, especially the ones related to
wxPython. Where is this tr function defined and what does it do? To make the
argument a raw string?
When I type print tr('some string') in PyShell that comes with wxPython, no
error. But if I type that line in a .py fi
Hello,
I've been wrestling with some badly written init scripts, and picking
my way through the redhat init script system. I'm getting to the
point of thinking I could do this sort of thing in Python just as
effectively.
Are there any pointers available? Eg libraries that give process
informati
"Dong Li" <[EMAIL PROTECTED]> wrote
If I want to create a text user interface for my application, is
there
any existed module to facilitate such building?
Yes, Python includes the cmd module which is a framework
for a menu driven command line. It is very like the help system
that Python uses
26 matches
Mail list logo