码迷,mamicode.com
首页 > 其他好文 > 详细

20_03_06_04 Hello World 程序

时间:2020-03-06 15:48:38      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:host   hello   一个   命令   vim   shel   chmod   shell   程序   

0. 在linux下创建一个文件叫 hello.py 并输入

    print("Hello World!")

 

1. 执行命令:python hello.py 输出

    localhost:~ jieli$ vim hello.py

    localhost:~ jieli$ python hello.py

 

2. 指定解释器

    上一步中执行 python hello.py 时,明确的指出 hello.py 脚本由 python 解释器来执行

    如果想要类似于执行shell脚本一样执行python脚本

    例: ./hello.py ,那么就需要在 hello.py 文件的头部指定解释器,如下:

    #! /usr/bin/env python

    print "hello, world"

    如此一来,执行:./hello.py 即可

    注:执行前需给予 hello.py 执行权限,chmod 755 hello.py

 

3. 在交互器中执行

20_03_06_04 Hello World 程序

标签:host   hello   一个   命令   vim   shel   chmod   shell   程序   

原文地址:https://www.cnblogs.com/azxsdcv/p/12426291.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!