Re: How to add data in xlm file ?

2016-08-13 Thread Karim
On 13/08/2016 11:05, Asad ur Rehman wrote: def Test(request): save_path = '/usr/share/newfies/' name_of_file = ("Avatar") completeName = os.path.join(save_path, name_of_file+".xlm") file1 = open(completeName, "w") toFile = raw_input("Write what you want into the

How to add data in xlm file ?

2016-08-13 Thread Asad ur Rehman
def Test(request): save_path = '/usr/share/newfies/' name_of_file = ("Avatar") completeName = os.path.join(save_path, name_of_file+".xlm") file1 = open(completeName, "w") toFile = raw_input("Write what you want into the field") file1.write(toFile)