Python之第一个程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之第一个程序相关的知识,希望对你有一定的参考价值。
交互式命令行:
[[email protected] ~]# python #进入交互式界面
Python 2.6.6 (r266:84292, Jul 23 2015, 14:41:34)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-11)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print("hello!word") #注意格式
hello!word
>>> exit() #退出
Python脚本:
[[email protected] ~]# vim a.py
#!/bin/env python
print("hello!word")
[[email protected] ~]# chmod +x a.py
[[email protected] ~]# ./a.py
hello!word
本文出自 “一万年太久,只争朝夕” 博客,请务必保留此出处http://zengwj1949.blog.51cto.com/10747365/1918543
以上是关于Python之第一个程序的主要内容,如果未能解决你的问题,请参考以下文章