"GoodPotatoes" <goodpotat...@yahoo.com> wrote

print page1.readlines()

From this excercise, the first time I read page1 I get all of the lines.

The best thing to do is store them in a variable then print them.
That way you can access them at will:

lines  = page1.readlines()
print lines  # all of them as a list

print lines[2],lines[5], lines [-1]   # 3rd, 6th and last as lines

HTH,


--
Alan Gauld
Author of the Learn to Program web site
http://www.alan-g.me.uk/

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to