首页 > 编程语言 > 详细

python学习笔记(10)-python第一个小程序hello world

时间:2017-03-07 08:37:46      阅读:291      评论:0      收藏:0      [点我收藏+]

本节点标题
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

原文:http://www.cnblogs.com/helloxwr/p/6512779.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!