首页 > 代码库 > python学习笔记(10)-python第一个小程序hello world
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。