[Tutor] Python Pipes

2012-10-29 Thread Ganesh Manal
Please give me sample python program that works with python31 Thanks Regards, Ganesh Manal. As soon as your dream become stronger than your doubts and fears , Your dream begins to manifest . ___ Tutor maillist - Tutor@python.org To unsubscribe or

Re: [Tutor] Python Pipes

2012-10-29 Thread Peter Otten
Ganesh Manal wrote: Please give me sample python program that works with python31 $ touch sample.py $ cat sample.py $ python3 sample.py So the minimal python3 program is an empty file. ___ Tutor maillist - Tutor@python.org To unsubscribe or change

Re: [Tutor] Python Pipes

2012-10-29 Thread Mark Lawrence
On 29/10/2012 10:33, Ganesh Manal wrote: Please give me sample python program that works with python31 Thanks Regards, Ganesh Manal. As soon as your dream become stronger than your doubts and fears , Your dream begins to manifest . Please give me a signed and dated cheque with the areas

Re: [Tutor] Python Pipes

2012-10-29 Thread brian arb
Suggestion that you restate your request in the form of a question that is less generic and more specific to what you are looking for. On Mon, Oct 29, 2012 at 6:33 AM, Ganesh Manal manalgan...@gmail.com wrote: Please give me sample python program that works with python31 Thanks Regards,

Re: [Tutor] Python Pipes

2012-10-29 Thread Emile van Sebille
On 10/29/2012 3:33 AM, Ganesh Manal wrote: Please give me sample python program that works with python31 Start with the tutorial at http://docs.python.org/3/tutorial/index.html It'll step you through lots of sample python scripts. Emile ___ Tutor

Re: [Tutor] Python Pipes

2012-10-29 Thread eryksun
On Mon, Oct 29, 2012 at 6:33 AM, Ganesh Manal manalgan...@gmail.com wrote: Please give me sample python program that works with python31 Re: Python Pipes If you're looking to pipe data to, from, and between processes, look at the subprocess module: