第一节 Python基础

来源:互联网 发布:微博登陆不了网络异常 编辑:程序博客网 时间:2024/05/18 01:30

执行Python程序


  • 2.x
    print "Hello, World!"
  • 3.x
    print("Hello, World!")
  • 将以上代码保存在hello.py文件中并使用python命令执行该脚本文件
    python hello.py

运行结果:

Hello, World!


查看Python版本

  • 使用命令查看Python版本

python -V

运行结果:

Python 2.7.12


  • 进入Python交互式编程模式查看版本
    python

运行结果:

Python 2.7.12 (v2.7.12:d33e0cf91556, Jun 27 2016, 15:19:22) [MSC v.1500 32 bit ( Intel)] on win32Type “help”, “copyright”, “credits” or “license” for more information.

0 0
原创粉丝点击