>>> a: 3 >>> type(a: 3) File "<stdin>", line 1 type(a: 3) ^ SyntaxError: invalid syntax >>> a: 3 >>> type(a) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'a' is not defined >>> a Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'a' is not defined
_______________________________________________ Python-ideas mailing list -- python-ideas@python.org To unsubscribe send an email to python-ideas-le...@python.org https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/python-ideas@python.org/message/5R2KDBAJ5M4IQUJBPJ23LPOKSJ4MODL2/ Code of Conduct: http://python.org/psf/codeofconduct/