Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
with open("d:\\data.txt", "w") as file: file.write("%s %s\n" % (int(25), "abc")) ''' run: 25 abc '''
with open("d:\\data.txt", "w") as file: file.write("%s %s %s\n" % (float(12.87), "c", "python")) ''' run: 12.87 c python '''