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

【Python基础教程第2版】——第一讲:基础知识

时间:2014-08-20 19:23:52      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:使用   log   on   sp   python   c   字符串   print   

1、长字符串:(用三引号如‘‘‘或者"""来引起来)

>>> print """
This is a very log string.
It continues here.
And it‘s not over yet.
"Hello world!"
"""

This is a very log string.
It continues here.
And it‘s not over yet.
"Hello world!"

 

2、原始字符串:(注:最后面不要出现转义符,其他的都会保持原样显示,中间不用使用转义符)

>>> print r‘C:\nowhere‘
C:\nowhere

 

3、字符串表示:str和repr

(str函数:会把值转换为合理形式的字符串;repr函数:会创建一个字符换,以合法的Python表达式的形式来表示值)

>>> print str(temp)
42
>>> print ‘1238934‘+str(temp)
123893442

>>> print ‘the temp is ‘+ repr(temp)
the temp is 42

 

【Python基础教程第2版】——第一讲:基础知识,布布扣,bubuko.com

【Python基础教程第2版】——第一讲:基础知识

标签:使用   log   on   sp   python   c   字符串   print   

原文地址:http://www.cnblogs.com/keke-xiaoxiami/p/3920273.html

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