脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python环境搭建过程从安装到Hello World

Python环境搭建过程从安装到Hello World

2021-09-02 00:15唔仄lo咚锵 Python

这篇文章主要介绍了Python环境搭建过程从安装到Hello World,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

开发环境

安装最新版Python
下载地址:https://www.python.org/downloads/

Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World

运行Python


1.交互方式运行

用自带的IDLE

Python环境搭建过程从安装到Hello World

打开cmd输入python

Python环境搭建过程从安装到Hello World

2.程序方式运行
新建hello.py

print("Hello World") #打印语句
input() #输入(起暂停作用)

直接双击该文件

Python环境搭建过程从安装到Hello World

用cmd运行

Python环境搭建过程从安装到Hello World

UNIX/Linux下,也是python+文件名记得用chomod命令设置执行权限

%python hello.py
%./hello.py

IDE

推荐PyCharm
下载地址:https://www.jetbrains.com/zh-cn/pycharm/download/
有学生邮箱可以用专业版,或者选择免费社区版。

Python环境搭建过程从安装到Hello World

Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World

插播反爬信息 )博主CSDN地址:https://wzlodq.blog.csdn.net/

Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World

第一个项目 

流水的语言,铁打的Hello World

Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World

Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World
Python环境搭建过程从安装到Hello World

Python环境搭建过程从安装到Hello World

到此这篇关于Python环境搭建过程从安装到Hello World的文章就介绍到这了,更多相关python环境安装hello world内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_45034708/article/details/113597816

延伸 · 阅读

精彩推荐