Re: I am new here and i need your help please

2017-07-26 Thread yasirrbadamasi
Thank you for your responses, i really appreciate -- https://mail.python.org/mailman/listinfo/python-list

Re: I am new here and i need your help please

2017-07-25 Thread Rustom Mody
On Wednesday, July 26, 2017 at 12:11:27 PM UTC+5:30, dieter wrote: > yasirrbadamasi: > > > I have never execute any program before using python and a task was given > > to me by my teacher > > I suggest to start by reading the Python tutorial: > "https://docs.python.org/3/tutorial/index.html";.

Re: I am new here and i need your help please

2017-07-25 Thread dieter
yasirrbadam...@gmail.com writes: > I have never execute any program before using python and a task was given to > me by my teacher I suggest to start by reading the Python tutorial: "https://docs.python.org/3/tutorial/index.html";. -- https://mail.python.org/mailman/listinfo/python-list

Re: I am new here and i need your help please

2017-07-25 Thread Wildman via Python-list
On Tue, 25 Jul 2017 00:48:25 -0700, yasirrbadamasi wrote: > I have never execute any program before using python and a task was given to > me by my teacher > ~ to write a python program to print my details and store in a third party > variables. > ~ the details include name, age, height, status

Re: I am new here and i need your help please

2017-07-25 Thread Steven D'Aprano
On Tue, 25 Jul 2017 00:48:25 -0700, yasirrbadamasi wrote: > I have never execute any program before using python and a task was > given to me by my teacher ~ to write a python program to print my > details and store in a third party variables. > ~ the details include name, age, height, status. so

I am new here and i need your help please

2017-07-25 Thread yasirrbadamasi
I have never execute any program before using python and a task was given to me by my teacher ~ to write a python program to print my details and store in a third party variables. ~ the details include name, age, height, status. so please your help is highly needed, thanks -- https://mail.pyth

Re: Python Events in 2017, Need your help.

2017-02-10 Thread Stefan Behnel
Hi! Germany has three major Python events planned this year: - PyCon-Web in München (May 27-28th) - Python-Camp in Köln (April 8-9th) - PyCon-DE in Karlsruhe (October, dates TBA). http://pyconweb.org/ https://python-verband.org/informieren/events/pythoncamp-2017 Stefan Stephane Wirtel via PS

Re: Python Events in 2017, Need your help.

2017-02-08 Thread Stephane Wirtel via Python-list
Thank you, with your help, we have added events on the t-shirt. Now, Could you just add them on python.org/events ? Have a nice day, Stephane On 9 Jan 2017, at 10:54, Stephane Wirtel via Python-list wrote: Dear Community, For the PythonFOSDEM [1] on 4th and 5th February in Belgium, I would

Re: [PSF-Community] Python Events in 2017, Need your help.

2017-01-09 Thread Danny Adair
Thanks Stephane, Kiwi PyCon 2017 will be in Auckland, New Zealand in September - exact dates and location not yet determined. I'll submit it when they are. Cheers, Danny On Mon, Jan 9, 2017 at 10:54 PM, Stephane Wirtel via PSF-Community wrote: > Dear Community, > > For the PythonFOSDEM [1] on

Python Events in 2017, Need your help.

2017-01-09 Thread Stephane Wirtel via Python-list
Dear Community, For the PythonFOSDEM [1] on 4th and 5th February in Belgium, I would like to present some slides with the Python events around the World. Based on https://python.org/events, I have noted that there are missing events, for example: * PyCon Otto: Italy * PyCon UK: United Kingd

回复: Re: Need your help

2011-04-28 Thread 1011_wxy
Dear Thomas,JM,Chris Rebert: I got it. Thank you very very very much. Best Regards 2011-04-29 1011_wxy 发件人: Thomas Rachel 发送时间: 2011-04-28 21:26 主 题: Re: Need your help 收件人: python-list@python.org Am 28.04.2011 13:14, schrieb Chris Rebert: > import a, b, sys >

Re: Need your help

2011-04-28 Thread Thomas Rachel
Am 28.04.2011 13:14, schrieb Chris Rebert: import a, b, sys def c(): orig_stdout = sys.stdout sys.stdout = open('my_log_file.log', 'w') a.a() b.b() sys.stdout.close() sys.stdout = orig_stdout Someone may have written a with-statement context manager that abstracts

Re: 回复: Re: Need your help

2011-04-28 Thread Jean-Michel Pichavant
1011_wxy wrote: Hi JM: *python c.py > afile.log* could you pls give me the whole example? I am so sorry that I am a beginner in Python. Your module a and b that you cannot modify given your original description, are printing data using the print statement. That means these module only

回复: Re: Need your help

2011-04-28 Thread 1011_wxy
Hi JM: python c.py > afile.log could you pls give me the whole example? I am so sorry that I am a beginner in Python. 2011-04-28 1011_wxy 发件人: Jean-Michel Pichavant 发送时间: 2011-04-28 20:42 主 题: Re: Need your help 收件人: 1011_wxy <1011_...@163.com> 抄 送: "python-l

Re: Need your help

2011-04-28 Thread Jean-Michel Pichavant
ef c(): a.a() b.b() Here in function c,How can i record all the information printed by a and b with out modifying moudle a and b? I want to output all the printed information into a text file. Need your help, thanks a lot! Best Regards 2011-04-28 -

Re: Need your help

2011-04-28 Thread Ervin Hegedüs
hello, On Thu, Apr 28, 2011 at 01:20:16PM +0200, Ervin Hegedüs wrote: > #!/usr/bin/python > > import a > import b > > import sys > import StringIO > > output = StringIO.StringIO() > > def c(): > # save default stdout > tout = sys.stdout > # redirect stdout to StringIO object >

Re: Need your help

2011-04-28 Thread Ervin Hegedüs
-8" > #moudle c.py > import a > import b > def c(): > a.a() > b.b() > > > Here in function c,How can i record all the information printed by a and b > with out modifying moudle a and b? > I want to output all the printed information into a text file. >

Re: Need your help

2011-04-28 Thread Chris Rebert
f b(): >     print " function b!" > > > #encoding="utf-8" > #moudle c.py > import a > import b > def c(): > a.a() > b.b() > > > Here in function c,How can i record all the information printed by a and b > with out modifying moud

Need your help

2011-04-28 Thread 1011_wxy
.b() Here in function c,How can i record all the information printed by a and b with out modifying moudle a and b? I want to output all the printed information into a text file. Need your help, thanks a lot! Best Regards 2011-04-28 Kerry Wang-- http://mail.python.org/mailman/listinfo/python-list

Re: i need your help

2005-12-19 Thread Kevin Yuan
You may use IDLE in the Start menu2005/12/19, Steve Holden <[EMAIL PROTECTED]>: emrah gün wrote:>> hi.i dont know it is true or not to write you about that.I ve problem to> run phyton in my personal computer.I install it and there is no error> when installing but when i want to run pythonw.exe, no

Re: i need your help

2005-12-18 Thread Steve Holden
emrah gün wrote: > > hi.i dont know it is true or not to write you about that.I ve problem to > run phyton in my personal computer.I install it and there is no error > when installing but when i want to run pythonw.exe, no > window opened.Only i can run python.exe in dos shell when i click.when

i need your help

2005-12-18 Thread g
hi.i dont know it is true or not to write you about that.I ve problem to run phyton in my personal computer.I install it and there is no error when installing but when i want to run pythonw.exe, no window opened.Only i can run python.exe in dos shell when i click.when cilicking to w9xpopen.exe gi

Re: PyCon is coming - we need your help

2004-12-22 Thread Aahz
In article <[EMAIL PROTECTED]>, jfj <[EMAIL PROTECTED]> wrote: > >I wish it was in Amsterdam.. ;) Feel free to run one there! Then again, there's already EuroPython. -- Aahz ([EMAIL PROTECTED]) <*> http://www.pythoncraft.com/ "19. A language that doesn't affect the way you th

Re: PyCon is coming - we need your help

2004-12-22 Thread jfj
I wish it was in Amsterdam.. ;) Gerald -- http://mail.python.org/mailman/listinfo/python-list

PyCon is coming - we need your help

2004-12-21 Thread Steve Holden
Dear Python User: I wonder if you would be kind enough to take the time to read this email and help us to publicize PyCon DC 2005, being held March 23-26 at the Cafritz Conference Center of George Washington University. The Call for Participation went out some time ago, but it is a good time to