On Tue, Jan 3, 2017 at 10:46 PM, Deborah Swanson
<pyt...@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
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to