python学习笔记(10)-python第一个小程序hello world
Posted 草盖木先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习笔记(10)-python第一个小程序hello world相关的知识,希望对你有一定的参考价值。
本节点标题
1、第一个小程序hello world
1.1、python2与python3的hello world
1.2、换行的打印
=======================================================================================================================
1、第一个小程序hello world
1.1、python2与python3的hello world
>>> print "hello world!" --python2.x
hello world!
>>> print("hello world!") --python2.6、2.7、3.x
hello world!
>>>
1.2、换行的打印
#!/usr/bin/env python36
#!coding=utf-8
print ("helo world!\nI love you!")
结果:(\n是换行)
helo world!
I love you!
以上是关于python学习笔记(10)-python第一个小程序hello world的主要内容,如果未能解决你的问题,请参考以下文章