赞
踩
已知一个字符串为“hello_world_yoyo”,如何得到一个队列
["hello","world","yoyo"]
可以使用 split() 函数,作用:拆分字符串。
通过指定分隔符对字符串进行切片,并返回分割后的字符串列表(list)
- a='hello_world_yoyo'
- print(a.split("_"))
输出:
2.有个列表["hello","world","yoyo"],如何把列表里面的字符串连起来,得到字符串“hello_world_yoyo”?
使用 join() 函数,将数据转换成字符串:
- a=["hello","world","yoyo"]
-
- print("_".join(a)
输出:
3.把字符串s中的每个空格替换成“%20”,输入:s="we are happe.",输出:“we%20are%20happey.”。
使用 replace() 函数,替换字符。
- s='We are happy.'
- print(s.replace('','%20'))
4.统计字符串“hello,welcom to my world.”中字母“w”出现的次数
统计字符串 count() ,count:数数,计数,点数目。多用于数据的统计。
- s="hello.welcome to my world."
-
- print(a.count(w)
5.
判断字符串a="hello.welcome to my world."是否包含b="world",如果含有则返回Ture.如果没有,则返回false。注:使用函数来完成。
- def test():
-
- a="hello.welcome to my world."
-
- world="world"
-
- if world in a :
-
- return Ture
-
- return False
-
- print(taste())
6.求1+2+3+4+5+6+......100的和
这里使用循环语句得到结果。
- s=i=0
-
- while i<=100:
-
- s=s+i
-
- i=i+1
-
- print(s)
如果使用for I in range (1,100)
那么得到的就是i加1到100的各个值
例如:
- for i in range (1,101)
- i+=i
- printf("i="'i')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。