Re: create new python file

2013-06-04 Thread Tobiah
So, can i program within just by the print statement? Or do i have to do something else. it is completely indecipherable (to me at least) what you are saying, leave aside any issues with python. He said, "Oh, so writing python statements into a text file is as simple as printing them, referen

RE: create new python file

2013-06-04 Thread Carlos Nepomuceno
> Date: Tue, 4 Jun 2013 11:54:52 -0700 > Subject: Re: create new python file > From: kakararunachalserv...@gmail.com [...] > > > > > So, can i program within just by the print statement? Or do i have to do > > > something else. > > > > > >

Re: create new python file

2013-06-04 Thread kakararunachalservice
On Tuesday, June 4, 2013 11:51:46 PM UTC+5:30, rusi wrote: > On Jun 4, 11:09 pm, kakararunachalserv...@gmail.com wrote: > > > Thank you so much! Why didn't i thought about that. So, can i program > > within just by the print > > > statement? Or do i have to do something else. I'm sorry, i just l

Re: create new python file

2013-06-04 Thread rusi
On Jun 4, 11:09 pm, kakararunachalserv...@gmail.com wrote: > Thank you so much! Why didn't i thought about that. So, can i program within > just by the print > statement? Or do i have to do something else. I'm sorry, i just learning > python. Thanks again! If you are just learning python, you al

Re: create new python file

2013-06-04 Thread kakararunachalservice
On Tuesday, June 4, 2013 11:14:32 PM UTC+5:30, Gary Herron wrote: > On 06/04/2013 09:07 AM, kakararunachalserv...@gmail.com wrote: > > > Hi, > > > Can anyone please tell me how to dynamically create a new python file > > within a program??? > > > > What do you mean by a "python file"? If yo

Re: create new python file

2013-06-04 Thread Gary Herron
On 06/04/2013 09:07 AM, kakararunachalserv...@gmail.com wrote: Hi, Can anyone please tell me how to dynamically create a new python file within a program??? What do you mean by a "python file"? If you mean a text file containing python code, then create it like any other text file. For ins

Re: create new python file

2013-06-04 Thread Fábio Santos
On 4 Jun 2013 17:14, wrote: > > Hi, > Can anyone please tell me how to dynamically create a new python file within a program??? That's generally a bad idea. Why are you doing that? That said, it's just like writing to a text file. So if you write python in a text file, you're good. -- http://ma

create new python file

2013-06-04 Thread kakararunachalservice
Hi, Can anyone please tell me how to dynamically create a new python file within a program??? -- http://mail.python.org/mailman/listinfo/python-list

Re: How to create new python file with increament number, if doesn't exist?

2013-05-27 Thread Jens Thoms Toerring
Avnesh Shakya wrote: >I want to create a new python file like 'data0.0.5', but if it is already > exist then it should create 'data0.0.6', if it's also exist then next like > 'data0.0.7'. I have done, but with range, please give me suggestion so that > I can do it with specifying range. > I wa

Re: How to create new python file with increament number, if doesn't exist?

2013-05-27 Thread Avnesh Shakya
Thanks On Mon, May 27, 2013 at 4:19 PM, Denis McMahon wrote: > On Mon, 27 May 2013 02:27:59 -0700, Avnesh Shakya wrote: > > > I want to create a new python file like 'data0.0.5', but if it is > > already exist then it should create 'data0.0.6', if it's also exist > > then next like 'data0.0.7'.

Re: How to create new python file with increament number, if doesn't exist?

2013-05-27 Thread Denis McMahon
On Mon, 27 May 2013 02:27:59 -0700, Avnesh Shakya wrote: > I want to create a new python file like 'data0.0.5', but if it is > already exist then it should create 'data0.0.6', if it's also exist > then next like 'data0.0.7'. I have done, but with range, please give > me suggestion so that I can do

How to create new python file with increament number, if doesn't exist?

2013-05-27 Thread Avnesh Shakya
hi, I want to create a new python file like 'data0.0.5', but if it is already exist then it should create 'data0.0.6', if it's also exist then next like 'data0.0.7'. I have done, but with range, please give me suggestion so that I can do it with specifying range. I was trying this way and it'