博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python-基础
阅读量:5227 次
发布时间:2019-06-14

本文共 907 字,大约阅读时间需要 3 分钟。

1. hello world程序

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

print("Hello World!")

  然后执行命令:python hello.py,输出

[root@test-1 python]# vim hello.py[root@test-1 python]# python hello.py Hello World!

  指定解释器

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

  如果想要类似于执行shell脚本一样执行python脚本,例如:./hello.py,那么就需要在hello.py文件的头部指定解释器,如下:

[root@test-1 python]# cat hello.py #!/usr/bin/env python #指定解释器print("Hello World!")[root@test-1 python]# chmod +x hello.py [root@test-1 python]# /python/hello.py Hello World!

  如此一来,执行:./hello.py 或/python/hello.py

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

在交互器中执行
  除了把程序写在文件里,还可以直接调用python自带的交互器运行代码,
  

[root@test-1 python]# pythonPython 2.7.5 (default, Apr 11 2018, 07:36:10) [GCC 4.8.5 20150623 (Red Hat 4.8.5-28)] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> print("hello world!")hello world!

 

转载于:https://www.cnblogs.com/scajy/p/9785628.html

你可能感兴趣的文章
python学习笔记(三)
查看>>
牛人的博客
查看>>
[bzoj] 1040 骑士 || 基环外向树dp
查看>>
LeetCode Golang 4. 寻找两个有序数组的中位数
查看>>
Nginx 访问认证
查看>>
Python 列表去重(数组)的几种方法
查看>>
【NOIP模拟】Mushroom的序列
查看>>
【转】iOS申请发布证书-图文详解
查看>>
BZOJ1304: [CQOI2009]叶子的染色 树形dp
查看>>
电子测量与智能仪器第三次作业
查看>>
dhttp与IdCookieManager处理登陆过程
查看>>
[转载]预测10年后的世界
查看>>
Aspose.Cells导入与导出excel
查看>>
IP通信基础回顾3(第四周)
查看>>
MariaDB数据库3(select)
查看>>
1008 数组元素循环右移问题 (20 分)
查看>>
每天学习Linux(12)---more命令
查看>>
fedora gnome extension
查看>>
P2P原理
查看>>
mysql处理函数
查看>>