跟着笨方法学python个教程学习,边学边做习题边记录。
新手学python-笨方法学python-ex10-what's that - 学习记录
课程内容:
在习题 9 中我你接触了一些新东西。我让你看到两种让字符串扩展到多行的方法。第一种方法是在月份之间用 \n (back-slash n )隔开。这两个字符的作用是在该位置上放入一个“新行(new line)”字符。
使用反斜杠 \ (back-slash) 可以将难打印出来的字符放到字符串。针对不同的符号有很多这样的所谓“转义序列(escape sequences)”,但有一个特殊的转义序列,就是 双反斜杠(double back-slash) \\ 。这两个字符组合会打印出一个反斜杠来。接下来我们做几个练习,然后你就知道这些转义序列的意义了。
另外一种重要的转义序列是用来将单引号 ' 和双引号 " 转义。想象你有一个用双引号引用起来的字符串,你想要在字符串的内容里再添加一组双引号进去,比如你想说"I "understand" joe.",Python 就会认为 "understand" 前后的两个引号是字符串的边界,从而把字符串弄错。你需要一种方法告诉 python 字符串里边的双引号不是真正的双引号。
要解决这个问题,你需要将双引号和单引号转义,让 Python 将引号也包含到字符串里边去。这里有一个例子:
"I am 6'2\" tall." # 将字符串中的双引号转义
'I am 6\'2" tall.' # 将字符串种的单引号转义
第二种方法是使用“三引号(triple-quotes)”,也就是 """,你可以在一组三引号之间放入任意多行的文字。接下来你将看到用法。
跟着课程练习:
[root@lc test]# vi ex10.py
tabby_cat = "\tI'm tabbed in."
persian_cat = "I'm split\non a line."
backslash_cat = "I'm \\ a \\ cat."
fat_cat = """
I'll do a list:
\t* Cat food
\t* Fishies
\t* Catnip\n\t* Grass
"""
print tabby_cat
print persian_cat
print backslash_cat
print fat_cat
"ex10.py" 15L, 255C written
[root@lc test]#
执行该程序得到以下结果:
[root@lc test]# python ex10.py
I'm tabbed in.
I'm split
on a line.
I'm \ a \ cat.
I'll do a list:
* Cat food
* Fishies
* Catnip
* Grass
[root@lc test]#
加分练习:
1.上网搜索一下还有哪些可用的转义字符。
Python的转义字符及其含义
符 号 说 明
\' 单引号
\" 双引号
\a 发出系统响铃声
\b 退格符
\n 换行符
\t 横向制表符
\v 纵向制表符
\r 回车符
\f 换页符
\o 八进制数代表的字符
\x 十六进制数代表的字符
\000 终止符,\000后的字符串全部忽略
如果在字符串中输出"\",需使用"\\"
2.使用 ''' (三个单引号)取代三个双引号,看看效果是不是一样的?
试了一下,结果是一样的。
[root@lc test]# vi ex10-2.py
tabby_cat = "\tI'm tabbed in."
persian_cat = "I'm split\non a line."
backslash_cat = "I'm \\ a \\ cat."
fat_cat = '''
I'll do a list:
\t* Cat food
\t* Fishies
\t* Catnip\n\t* Grass
'''
print tabby_cat
print persian_cat
print backslash_cat
print fat_cat
"ex10-2.py" 15L, 255C written
[root@lc test]#
运行该程序:
[root@lc test]# python ex10-2.py
I'm tabbed in.
I'm split
on a line.
I'm \ a \ cat.
I'll do a list:
* Cat food
* Fishies
* Catnip
* Grass
[root@lc test]#
3.将转义序列和格式化字符串放到一起,创建一种更复杂的格式。
Python格式化字符串的替代符以及含义
符 号 说 明
%c 格式化字符及其ASCII码
%s 格式化字符串
%d 格式化整数
%u 格式化无符号整型
%o 格式化无符号八进制数
%x 格式化无符号十六进制数
%X 格式化无符号十六进制数(大写)
%f 格式化浮点数字,可指定小数点后的精度
%e 用科学计数法格式化浮点数
%E 作用同%e,用科学计数法格式化浮点数
%g 根据值的大小决定使用%f活%e
%G 作用同%g,根据值的大小决定使用%f活%e
%p 用十六进制数格式化变量的地址
试试看:
>>> print 'what\'s this: %s' % 'this is a word'
what's this: this is a word
>>> print 'what\'s this: %s' % 'this is a "word"'
what's this: this is a "word"
>>> print 'what\'s this? %s' % '\nthis is a "word"'
what's this?
this is a "word"
>>> print 'what\'s this? %s' % '\nthis is \ta tab '
what's this?
this is a tab
>>>
4.记得 %r 格式化字符串吗?使用 %r 搭配单引号和双引号转义字符打印一些字符串出来。 将 %r 和 %s 比较一下。 注意到了吗?%r 打印出来的是你写在脚本里的内容,而 %s 打印的是你应该看到的内容。
>>> print 'what\'s this: %s' % 'this is a word'
what's this: this is a word
>>> print 'what\'s this: %s' % 'this is a "word"'
what's this: this is a "word"
>>> print 'what\'s this: %r' % 'this is a word'
what's this: 'this is a word'
>>> print 'what\'s this: %r' % 'this is a "word"'
what's this: 'this is a "word"'
>>>
至此,笨方法学Python-ex10-what's that这一小节的学习结束了。