码迷,mamicode.com
首页 > 编程语言 > 详细

Python的输出输入和注释

时间:2015-03-06 22:06:39      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

内容:

  1:Python的输出

  2:Python的输入

  3:python的注释

Python的输出和注释  

1 print hello,world  #hello,world
2 print Hello, World, Python# Hello,world Python
3 print  100 + 200 #300

Python的基本输入

>>> name = raw_input("Please input your name: ")
Please input your name: lip
>>> print "Hello", name
Hello lip

Python的注释

1 #注释的方式1 Python的注释以"#"开头,"#"之后的视为注释的内容,相当于C++的 "//" ,C的"/* */"
2 
3 ‘‘‘
4 注释的方式2,多行注释
5 ‘‘‘
6 
7 """
8 注释的方式3,也属于多行注释
9 """

 

Python的输出输入和注释

标签:

原文地址:http://www.cnblogs.com/sunjzcoding/p/4319302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!