python

来源:互联网 发布:什么样买卖数据 编辑:程序博客网 时间:2024/06/01 09:50

去python.org下载

python3切换

python进入命令行


代码块结束用 :表示


编程规范网址:www.python.org/dev/peps/pep-0008/

信条:www.python.org/dev/peps/pep-0020/

###########################

python使用内置模块

import引入

例如:调用数学计算的内置模块

     >>> import math

    >>> math sqrt(64)   #=>求平方根 

    >>> 8.0

************************

help(math)=> 查看math方法里面有哪些方法可以直接使用

#help()

************************

python通过模块的形式组织项目

模块就是用import来引入的