你了解Python字符串连接的相关典型例子吗?其实Python字符串的连接是很容易学的,只要你看完我们的文章,我们的文章对其有一个详细的比喻与介绍,希望你能有所收获。以下是文章的具体介绍。
生字符串
若要指明字符串中没有转义序列,可以在字符串前加r或R,如r”Newlines are indicated by \n”.
字符串不可改变
(有点奇怪哦,和常量没什么区别了)
Python字符串连接
两个字符串放在一起,会被自动的连接起来。如’Whar\’s your ‘‘name?’会自动转化成”What’s your name?”
转义序列
后斜线+字符
- \’ ”What’s your name?”=’What\’s your name?”
- \\,\”,\n,\t.
- "This is the first sentence.\
- This is the second sentence."
格式化方法有时我们需要使用其他信息来创建Python字符串。format()就很有用了。
- >>> age=25
- >>> name='Swaroop'
- >>> print('{0} is {1} years old'.format(name,age))
- Swaroop is 25 years old
- >>> '{0:.3}'.format(1/3)
- '0.333'
- >>> '{0:_^11}'.format('hello')
- '___hello___'
- >>> '{name} wrote {book}'.format(name='Swaroop'
,book='A Byte of Python')- 'Swaroop wrote A Byte of Python'
- >>>
上述的内容就是对Python字符串的生字符串与字符串连接以及格式化方法的相关介绍。
【编辑推荐】