6 lines
167 B
Python
6 lines
167 B
Python
f = open(r'D:\F\NewI\opencode\daily-workspace\temp\cli_run_log.txt', 'r', encoding='utf-8')
|
|
lines = f.readlines()
|
|
f.close()
|
|
for l in lines[:35]:
|
|
print(l.rstrip())
|