字符串练习

Posted 192邓锦秀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串练习相关的知识,希望对你有一定的参考价值。

字符串练习:

http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html

取得校园新闻的编号

 

str=‘http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html‘
print(str[-14:-5])

  

https://docs.python.org/3/library/turtle.html

产生python文档的网址

 

str="https://docs.python.org/3/library/"+"turtle"+".html"
print(str)

  

http://news.gzcc.cn/html/xiaoyuanxinwen/4.html

产生校园新闻的一系列新闻页网址

for i in range(5):
    print(‘http://news.gzcc.cn/html/xiaoyuanxinwen/{ }.html‘.format(i))

  

 

练习字符串内建函数:strip,lstrip,rstrip,split,count

用函数得到校园新闻编号

str=‘http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html‘
print(str.strip(‘.html‘).split(‘_‘)[1])

  

用函数统计一歌词中单词出现的次数

str=‘‘‘I‘m a big big girl
  In a big big world
  It‘s not a big big thing if you leave me
  But I do do feel
  that I too too will miss you much
  Miss you much.
I can see the first leaf falling
  It‘s all yellow and nice
  It‘s so very cold outside
  Like the way I‘m feeling inside
  I‘m a big big girl
  In a big big world
  It‘s not a big big thing if you leave me
  But I do do feel
  that I too too will miss you much
  Miss you much.
Outside it‘s now raining
  And tears are falling from my eyes
  Why did it have to happen
  Why did it all have to end
  I‘m a big big girl
  In a big big world
  It‘s not a big big thing if you leave me
  But I do do feel
  that I too too will miss you much
  Miss you much.
I have your arms around me ooooh like fire
  But when I open my eyes
  You‘re gone.
I‘m a big big girl
  In a big big world
  It‘s not a big big thing if you leave me
  But I do do feel
  that I too too will miss you much
  Miss you much.
I‘m a big big girl
  In a big big world
  It‘s not a big big thing if you leave me
  But I do feel that will miss you much
  Miss you much.‘‘‘
print(str.count(‘big‘))

  

将字符串分解成一个个的单词。

str=‘long time no see‘
print(str.split())

  

 

以上是关于字符串练习的主要内容,如果未能解决你的问题,请参考以下文章

csharp Epicor标准练习片段

golang 去练习片段

从搜索文档中查找最小片段的算法?

ktor HTTP API 练习

JQuery02

指针练习:输出Hello