- 授权协议: GPL
- 开发语言:
- 操作系统: 跨平台
- 软件首页: http://pike.ida.liu.se/
- 软件文档: http://pike.ida.liu.se/docs/tutorial/
软件介绍
Pike 是一个简单易学的解释性的面向对象动态语言,其语法跟 C 语言比较类似,包括一个强大的模块系统,例如数据库访问,图片处理和高级数据加密等等。
下面是一个用 Pike 编写的 Hello world 程序:
int main()
{
write("Hello world!\n");
return 0;
}
Introduction to Computation and Programming Using Python
John V. Guttag / The MIT Press / 2013-7 / USD 25.00
This book introduces students with little or no prior programming experience to the art of computational problem solving using Python and various Python libraries, including PyLab. It provides student......一起来看看 《Introduction to Computation and Programming Using Python》 这本书的介绍吧!
