今天学习了 字符串 和 List, 有几点心得记录
(书本为:Python编程 从入门到实践 Eric Matthes著 袁国忠 译)
1) 字符串就是 一系列字符。在python中, 用 引号括起来的都是 字符串。其中引号 可以说是单引号,也可以是 双引号。
这种灵活性能够在字符串中包含 引号 和 撇号:
‘ I told my friend, "python is my favorite language!" ’
"The language 'Python` is named after Monty Python, not the snake"
在用单引号括起的字符串中,如果包含撇号 `, 将导致错误。因为这会导致python将第一单引号 和 撇号 之间的内容 视为一个字符串,进而将余下的文本视为python 代码,从而引发错误。
message = " One of python's strengths is its diverse community."
这个没有问题。
然而,如果使用单引号, Python将无法正确地确定字符串的结束位置。
message =' One of python's strength is its diverse commnity.'
这个将报错。
2) LIST 里面 都是字符串,需要用 引号括起,如果不用引号,python解释成变量?
另外 变量 一定不要用 引号 括起,否则会解释成字符串,并不会用 变量的值来替换
领取专属 10元无门槛券
私享最新 技术干货