python-初识python

老样子,还是先来个hello world 吧....

localhost:~ pangw$ python
Python 2.7.10 (default, Jul 15 2017, 17:16:57)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> print "hello world"
hello world
>>> print 'hello world'
hello world
>>>

或者 直接运行

python helloworld.py
你一定好奇hello.py是怎么运行的

(烦,又得画图了)


python-初识python_第1张图片
image.png
  • 字节码文件
    1、.pyc
    2、.pyo

总结:
python 是动态语言(类型可以随便变),java 是静态语言(类型一旦确认,不一致就会报错)

你可能感兴趣的:(python-初识python)