Problem description:
I use the languague Python. It used to be possible to check functions like type()
, int()
, str()
in the CLI. Now I always get a syntax error. Is this function deleted or am I doing something wrong?
Examples:
type(12.21)
bash: syntax error near unexpected token `12.21`
int("45")
bash: syntax error near unexpected token `"45"`