Contact: aviboots(AT)netvision.net.il
41,502 questions
54,086 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 '''