美文网首页
1.Python3 Start

1.Python3 Start

作者: fumier | 来源:发表于2017-11-08 14:22 被阅读18次

    Python特点

    • 解释型语言,没有编译环节。不需要将源文件转换为目标文件,区别于JAVA
    • 交互式语言,在Python提示符,直接互动执行写你的程序
    • 面向对象语言,面向对象风格以及代码封装技术
    • 应用广泛,支持广发的应用程序开发,从简单的文字处理到www浏览器再到游戏

    mac Python3环境搭建

    1.下载安装python3,https://www.python.org/
    2.设置环境变量,vim ~/.bash_profile
    3.通过which python3找到安装路径

    # Setting PATH for Python 3.6
    # The original version is saved in .bash_profile.pysave
    PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}" export PATH
    

    4.使配置生效,source ~/.bash_profile
    5.命令行输入python3, 查看安装版本信息。

    相关文章

      网友评论

          本文标题:1.Python3 Start

          本文链接:https://www.haomeiwen.com/subject/bxoemxtx.html