Python的3.0版本,常被称为Python 3000,或简称Py3k。相对于Python的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0在设计的时候没有考虑向下兼容。
查看python的版本:
bogon:~ zhangkai$ python3 -V Python 3.5.1
进入到python的交互模式中也可以查看版本,顺便写第一个程序“Hello,World!”
1 bogon:~ zhangkai$ python3 2 Python 3.5.1 (v3.5.1:37a07cee5969, Dec 5 2015, 21:12:44) 3 [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin 4 Type "help", "copyright", "credits" or "license" for more information. 5 >>> print("Hello,World!") 6 Hello,World! 7 >>> exit()
也可以保存到一个文件里运行,python的文件是以".py"结尾的文件方式保存的。
1 bogon:~ zhangkai$ vim hello.py 2 #!/usr/bin/env python 3 print("Hello,World!") 4 bogon:~ zhangkai$ python3 hello.py 5 Hello,World!
第一个python程序就这样搞定了~
时间: 2024-11-08 20:20:39