Why does the : syntax not work on linux
On MacOS
→ python3
Python 3.6.3 (default, Oct 4 2017, 06:09:38)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.37)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> x : str = "hello"
>>>
On Linux
→ python3
Python 3.5.3 (default, Jan 19 2017, 14:11:04)
[GCC 6.3.0 20170118] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> x : str = "hello"
File "<stdin>", line 1
x : str = "hello"
^
SyntaxError: invalid syntax
>>>