Python基础-1.字符串处理

1.  用引号表示的都是字符串,引号可以是单引号',也可以是双引号".

>>test = 'hello,world!'
>>print(test)
hello,world!

>>test = "Hello,world!"
>>print(test)
hello,world!

>>test = '"hello",world!'
>>print(test)
"hello",world!

>>test = "'hello',world!"
>>print(test)
'hello',world!

注:连续的三个单引号或者双引号用来写注释

```
*****
```

"""
****
````

2.修改字符串大小写

2.1 string.title()将每个单词的首字母大写

>>test = 'hello,world!'
>>print(test.title())
Hello,World!

2.2 string.upper()将每个字符转化为大写
>>test = 'hello,world!'
>>print(test.upper())
HELLO,WORLD!

2.3 string.lower()将每个字符转化为小写
>>test = 'HELLO,World!'
>>print(test.lower())
hello,world!

3. 拼接字符串string1+string2

>>test = 'hello' + 'world!'
>>print(test)
helloworld!

4.添加空白

制表符'\t'  空格' '  换行符'\n'
>>test = 'hello\tworld\n!'
>>print(test)
hello	world
!
>>test = 'hello world\n!'
>>print(test)
hello world
!

5.删除空白

string.lstrip()删除字符串左边的空白字符
string.rstrip()删除字符串右边的空白字符
sstring.strip()删除字符串左右两边的所有空白字符
>>test = ' hello world! '
>>print(test.lstrip())
hello world! 
>>print(test.rstrip())
 hello world!
>>print(test.strip())
hello world!

6.切片处理

string.split()
test = ' hello world! '
print(test.split())

 

全部评论

相关推荐

想去夏威夷的小哥哥在度假:5和6才是重点
点赞 评论 收藏
分享
10-28 11:04
已编辑
美团_后端实习生(实习员工)
一个2人:我说几个点吧,你的实习经历写的让人觉得毫无含金量,你没有挖掘你需求里的 亮点, 让人觉得你不仅打杂还摆烂。然后你的简历太长了🤣你这个实习经历看完,估计没几个人愿意接着看下去, sdk, 索引这种东西单拎出来说太顶真了兄弟,好好优化下简历吧
点赞 评论 收藏
分享
昨天 00:11
已编辑
广东工业大学 算法工程师
避雷深圳  yidao,试用期 6 个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务