• 技术文章 >常见问题 >Python常见问题

    python为啥可以交互式

    silencementsilencement2020-02-10 14:14:26原创1903

    交互式编程

    交互式编程不需要创建脚本文件,是通过 Python 解释器的交互模式进来编写代码。

    linux上你只需要在命令行中输入 Python 命令即可启动交互式编程,提示窗口如下:

    $ python
    Python 2.7.6 (default, Sep  9 2014, 15:04:36) 
    [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>>

    Window 上在安装 Python 时已经安装了交互式编程客户端,提示窗口如下:

    在 python 提示符中输入以下文本信息,然后按 Enter 键查看运行效果:

    >>> print ("Hello, Python!")

    在 Python 2.7.6 版本中,以上实例输出结果如下:

    Hello, Python!

    推荐学习《Python教程》!

    专题推荐:交互式
    上一篇:python中如何切换工作目录 下一篇:python默认保留几位小数

    相关文章推荐

    • python安装好了怎么使用• python中10061错误是什么• python3如何实现一行输入,空格隔开• python中%f是什么意思

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网