python学习--安装和hello world

python安装

  • linux环境默认安装pyhton,但是是2.*版本的
    * 终端直接输入python

官方下载地址(最好下载版本3.*以上的,2.*不维护了)

安装步骤:
  1. 傻瓜式安装
  2. 校验是否安装正确
    • 终端直接输入 python3

使用工具pyCharm工具开发

  • 破解方式: https://blog.csdn.net/wchbest/article/details/94399253

开始写第一个pyhton程序(hello world)

  1. 输入: python3 进入python
  2. print(“hello world”) 回车执行程序
  3. 控制台展示: hello world (恭喜你,你的第一段python程序完成了)
  4. exit() 退出方式

python学习--安装和hello world_第1张图片

你可能感兴趣的:(python)