Re: [Tutor] Extract URL

2018-12-13 Thread Alan Gauld via Tutor
On 13/12/2018 17:14, Sammy Lee wrote:
> I need help on the problem stated below.
> 
> 
> Given a URL, open the webpage and return the first anchor link url (a href).

You will find a very similar example in the Web Client
topic of my tutorial, see below...

-- 
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos


___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Extract URL

2018-12-13 Thread Bob Gailer
On Dec 13, 2018 2:01 PM, "Sammy Lee"  wrote:
>
> I need help on the problem stated below.
>
>
> Given a URL, open the webpage and return the first anchor link url (a
href).
>
>
> def extract_url_link(url):

Same comments as my other two emails.
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


[Tutor] Extract URL

2018-12-13 Thread Sammy Lee
I need help on the problem stated below.


Given a URL, open the webpage and return the first anchor link url (a href).


def extract_url_link(url):
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor