>>> 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 -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at
https://mail.python.org/archives/list/[email protected]/message/5R2KDBAJ5M4IQUJBPJ23LPOKSJ4MODL2/
Code of Conduct: http://python.org/psf/codeofconduct/