美文网首页
Python Day195(字符串的连接)复盘

Python Day195(字符串的连接)复盘

作者: TianAff | 来源:发表于2017-12-14 08:31 被阅读0次

字符串的连接

直接使用“+”连接字符串



代码

# -*- coding: UTF-8 -*-
import os,sys
say='hello!'
say=say+'Morning!'
print('len',len(say))
print(say[0])
print(say[5])
print(say[0:5])
print(say[:5])
print(say[5:13])
print(say[0:-7])
print(say[:-7])

以下再列举两种有趣的连接方法:

相关文章

网友评论

      本文标题:Python Day195(字符串的连接)复盘

      本文链接:https://www.haomeiwen.com/subject/hhlhwxtx.html