Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
with open('info.txt', 'r') as f: all_lines = f.readlines() print(all_lines[1]) ''' run: high-level, general-purpos '''
with open('info.txt', 'r') as f: next(f) print(next(f)) ''' run: high-level, general-purpos '''