I love your views about this language. I personally like Python. You should know that Python is statically typed and when you statically type in Python, the code is like this (a lot like typescript):
myName: str
myName = "Johnny"
or
from typing import List
myName: List[int] = [1, 2, 3]