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的主要内容,如果未能解决你的问题,请参考以下文章

Python学习笔记—— 高级特性

Python 学习笔记 - 作用域小知识

python学习笔记第十一节(迭代和其他)

python学习笔记第十一节(迭代和其他)

python基础学习笔记——Python基础教程(第2版 修订版)第三章(字符串)

python基础学习笔记——Python基础教程(第2版 修订版)第十章(充电时刻)