On 09/10/2015 17:03, John Michael Lafayette wrote:
I would like Python to have a strong typing feature that can co-exist with the current dynamic typing system. Currently Python is like this:var animal = Factory.make("dog") #okay var dog = Factory.make("dog") #okay
As Ben Finney has all ready pointed out elsewhere Python is strongly typed. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list
