优美蚂蚁

文章
4
资源
0
加入时间
2年10月24天

python 原生字符串_Python字符串

一、字符串拼接1.采用 +号的形式a = 'hello'b = 'world'c = a + ' ' + bprint(c)#显示结果hello world2.采用格式化的形式a = 'hello'b = 'world'c = '%s %s' % (a,b)print(c)#显示结果hello world二、字符串下标操作1.正数,0代表字符串第一个字符username = 'feiniu002'...