博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串练习
阅读量:4882 次
发布时间:2019-06-11

本文共 725 字,大约阅读时间需要 2 分钟。

字符串练习:

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

取得校园新闻的编号

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

 

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(10):    str='http://news.gzcc.cn/html/xiaoyuanxinwen/{}.html'.format(i)    print(str)

 

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

用函数得到校园新闻编号

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

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

str='''起来!不愿做奴隶的人们!把我们的血肉筑成我们新的长城!中华民族到了最危险的时候,每个人被迫着发出最后的吼声。起来!起来!起来!我们万众一心,冒着敌人的炮火,前进!冒着敌人的炮火,前进!前进!前进、进!'''print(str.count('前进'))

转载于:https://www.cnblogs.com/Molemole/p/8613212.html

你可能感兴趣的文章
ICSharpCode.SharpZipLib.dll压缩的zip包,7zip解压时出错
查看>>
ubuntu14.0 服务器webmin安装
查看>>
微信小程序从零开始开发步骤(二)
查看>>
Ruby学习札记(四) 类 函数 代码块
查看>>
7. ZooKeeper的stat结构
查看>>
转:用GMapImageCutter1.4做地图(附下载)
查看>>
nginx + php-fpm 高并发配置 (也包括一部分apache/httpd)
查看>>
$.get/$.post/$.ajax/$.getJSON
查看>>
Java第三次作业
查看>>
6486: An Ordinary Game(规律)
查看>>
EntityFramework 启用迁移 Enable-Migrations 报异常 "No context type was found in the assembly"
查看>>
ssl2648-线段树练习5【线段树】
查看>>
[Tools] Create a Simple CLI Tool in Node.js with CAC
查看>>
HDU 4965 Fast Matrix Calculation 矩阵快速幂
查看>>
ThoughtWorks中国区CTO徐昊访谈摘录
查看>>
软工第二次作业
查看>>
基于Activiti5.15.1 自定义用户、组(User,Group)实现
查看>>
第1章 游戏之乐——中国象棋将帅问题
查看>>
spark读取 kafka nginx网站日志消息 并写入HDFS中(转)
查看>>
【BZOJ4590】[Shoi2015]自动刷题机 二分
查看>>