Contact: aviboots(AT)netvision.net.il
41,429 questions
53,976 answers
573 users
with open('info.txt', 'a') as f: f.write("javascript" + "\n") f.write("c#" + "\n") ''' run: python c++ javascript c# '''
f = open('info.txt', 'a') f.write("javascript" + "\n") f.write("c#" + "\n") f.close() ''' run: python c++ javascript c# '''