近期python语言貌似比較火, 今天闲来无事,简单的看了下,算是个入门吧.一门语言之所以值得这么多人去学,必然有它的独到之处,以下我们就用python和其它语言做个比較. Pythond VS C# 1. Python跨平台,能够执行在linux.weindows等平台 2. Pythond开源,C#则相反 3. Python是解释型语言,C#须要编译,所以Python执行要慢点 Pythond VS Java Python更简洁,Java过于庞大复杂,语法非常多 Python VS C C+…
弱类型?强类型?动态语言,静态语言 弱类型: 在程序运行过程中,类型可变 还有一种说法: 动态 variables must necessarily be defined before they are used. But the good thing is that these variables need not be declared, and they need not be bound to a particular type. Python is a very good exampl…