您好,登录后才能下订单哦!
今天就跟大家聊聊有关如何进行Python安装的实际应用操作,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
下载windows版本,下载完成以后,双击打开,然后一步一步安装。
*Python 2.5.2 Windows installer
装好后,启动 Python command line,然后输入:
*Python 2.5.2 Windows installer
如果输出
"Hello World"
那就表明安装成功了。简单的配置:右键我的电脑-属性-高级-环境变量,在path里输入你的python安装位置即可,比java简单的多了。我的是 E:\Python25;应该是找到pythonw.exe的父一级目录。测试:随便建一个文件夹,如在d\code\python下建立一个文本文件,并改名为 hello.py在文本中输入
print "Hello World"
在命令提示符下进入到 d\code\python安装路径下输入python hello.py,直接输入hello.py (必须设置环境变量才可以)程序将会输出Hello World我们看另一个稍微复杂的程序。
integer1=raw_input("enter the first integer:\n") intinteger1=int(integer1) integer2=raw_input("enter the second integer:\n") intinteger2=int(integer2) sum=integer1+integer2 print "The sum is ",sum
另存为sum.py .执行结果为:
E:\>python e:\python\sum.py enter the first integer: 8 enter the second integer: 11 The sum is 19
看完上述内容,你们对如何进行Python安装的实际应用操作有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。