Clickable hyperlinks
boB Stepp
robertvstepp at gmail.com
Wed Jan 4 00:18:16 EST 2017
More information about the Python-list mailing list
Wed Jan 4 00:18:16 EST 2017
- Previous message (by thread): Clickable hyperlinks
- Next message (by thread): Clickable hyperlinks
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
- Previous message (by thread): Clickable hyperlinks
- Next message (by thread): Clickable hyperlinks
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list