Python第一章学习笔记

Python是一种解释型、面向对象、动态数据类型的高级程序设计语言。

Python由Guido van Rossum于1989年底发明,第一个公开发行版发行于1991年。

像Perl语言一样,Python源代码同样遵循GPL(GNU General Public License)协议。

死循环(dead loop):

  count = 0

  while True :

    print("forever 21",count)

    count += 1

posted on 2018-05-15 17:59  coolwhite  阅读(124)  评论(0编辑  收藏  举报

导航