zoukankan      html  css  js  c++  java
  • 字符串练习

    字符串练习:

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

    取得校园新闻的编号

    str1 = 'http://new.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html'
    print(str1[-14:-5])

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

    产生python文档的网址

    addr1 = 'http://docs.python.org/3/library/'
    addr2 = '.html'
    addr = addr1 + 'turtle' + addr2
    print(addr)

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

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

    addr1 = 'http://news.gzcc.cn/html/xiaoyuanxinwen/'
    addr2 = '.html'
    for i in range(2,7):
        adrr = addr1 + str(i) +addr2
        print(adrr)

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

    用函数得到校园新闻编号

    str = 'http://new.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html'
    print(str.rstrip('.html')[-9:])
    str = 'http://new.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html'
    print(str.rstrip('.html').split('_')[1])

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

    longstr = '''Big Big World
      Emilia
    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(longstr.count('big'))

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

    str = 'This is a string example wow !'
    print(str.split())
    print(str.split('i'))

    2.组合数据类型练习

    分别定义字符串,列表,元组,字典,集合,并进行遍历。

    #字符串
    s = 'ABCDF'
    print(s)
    for i in s:
        print(i)
    #列表
    l = list('ABCDF')
    print(l)
    for i in l:
        print(i)
    #元组
    t = tuple('ABCDF')
    print(t)
    for i in t:
        print(i)
    #字典
    d = dict(zip('ABCDF', '12345'))
    print(d)
    for i in d:
        print(i)
    #集合
    s = set('ABCDF')
    print(s)
    for i in s:
        print(i)

    总结列表,元组,字典,集合的联系与区别。

  • 相关阅读:
    bootstrap 按钮 文本 浮动 隐藏
    bootstrap 表单控件 控件状态 控件大小 help-block
    wps 操作
    SSH中的免password登录
    Qt音乐播放器制作(二)Easy Player
    云计算资源分享与下载
    uva11059(最大乘积)
    两小时搞定C#版超级战舰游戏
    数据库中的參照完整性(Foreign Key)
    动手解决困扰自己的事情——记屏蔽网页广告
  • 原文地址:https://www.cnblogs.com/stcy520/p/8608850.html
Copyright © 2011-2022 走看看