Re: create new python file

2013-06-04 Thread Fábio Santos
On 4 Jun 2013 17:14, kakararunachalserv...@gmail.com 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

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

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 you mean a text

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

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 learning

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. it is completely indecipherable (to me at least) what you

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,