python介绍

python学习网 2018-03-26 11:18:01

python是一种解释型的面向对象的语言。

python有以下特点:

1.解释型 速度偏慢,开发周期短,调试容易,自我扩展性。

2..面向对象 在python,类(class),函数(function),模块(module)等等都是对象。

3.可扩展性

4.可嵌入

5.动态类型

1.1如何运行python windows下运行 hello word:

Python 3.6.3 (v3.6.3:2c5fed8, Oct  3 2017, 18:11:49) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print("hello word")
hello word
>>> 

 

阅读(792) 评论(0)