码迷,mamicode.com
首页 > 编程语言 > 详细

Python自学起飞——尝试

时间:2015-02-06 15:08:36      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:python

    按照编程传统,先来输出一个"Hello,World!",过程相当简单,直接上命令和结果:

    >>> print "Hello,World!"
    Hello,World!

    在百度百科上提到“……,在国外用Python做科学计算的研究机构日益增多,……”,接下来搞几个我儿子学习的算数题试试:

    >>> 10+3
    13
    >>> 12+18
    30

    我在计算器上验证了一下,10+3=13没错,12+16=28才对呢,这是怎么回事!!!


    在实际应用当中应该把输入存入文件,再次使用的时候直接用就行了,不会像上面都说不清是记忆错误还是输入错误的问题了。


    接下来把 print "Hello,World!"存入hello.py

    

[root@Python-Test pythontest]# cat >> hello.py <<EOF
> print "Hello,world!"
> EOF
[root@Python-Test pythontest]# ll
total 4
-rw-r--r--. 1 root root 21 Feb  6 13:09 hello.py
[root@Python-Test pythontest]# chmod +x hello.py 
[root@Python-Test pythontest]# ll
total 4
-rwxr-xr-x. 1 root root 21 Feb  6 13:09 hello.py

[root@Python-Test pythontest]# python hello.py
Hello,world!

    在python文件第一行加入以下内容,就可以直接执行了
[root@Python-Test pythontest]# cat hello.py 
#!/usr/bin/env python
print "Hello,world!"
[root@Python-Test pythontest]# ./hello.py 
Hello,world!

Python自学起飞——尝试

标签:python

原文地址:http://yuefan.blog.51cto.com/9907408/1612317

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