Clickable hyperlinks

boB Stepp robertvstepp at gmail.com
Tue Jan 3 06:18:16 EST 2017


On Tue, Jan 3, 2017 at 10:46 PM, Deborah Swanson
<python at deborahswanson.net> wrote:
>

>
> I didn't try printing them before, but I just did. Got:
>
> >>> print([Example](http://www.example.com)
>
> SyntaxError: invalid syntax  (arrow pointing at the colon)

As Steve had said, you need to put everything inside quotes.  Also, you are 
missing a matching paren.  Thus:

py3: print("[Example](http://www.example.com)") 
[Example](http://www.example.com)

As to whether anything will be "clickable" or not, what has already been said 
about different types of terminals applies.

--
boB




More information about the Python-list mailing list