Is Python static typed? -
i know python dynamic typed, duck typed , strong. in cases, have make sure declare list or dictionary beforehand in order use them... can python statically typed language?
no, python not statically typed.
in static typing names bound both type , object (or value), in python names bound objects. @ time can reassign name object of different type, cannot in statically typed languages.
i'm not sure mean needing declaring variables beforehand, guess creating empty list or dictionary , assigning name.
Comments
Post a Comment