博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串操作练习:星座、凯撒密码、99乘法表、词频统计预处理
阅读量:6168 次
发布时间:2019-06-21

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

 

实例:输出12个星座符号,以反斜线分隔。

for i in range(12):    print(chr(9800+i),end="\t")

 

输入姓名,格式输出:占4位、居中、不足4字的以空格填充。

s = input('input your name:')s = str(s)print('{0: ^75}'.format(s))

 

实例:恺撒密码的编码

def Caesar_code(s,t):    s = str(s)    t = int(t)    l = []    for i in range(len(s)):        l.append(chr(ord(s[i])+t))        print(chr(ord(s[i])+t),end='')Caesar_code('huanglinsheng',3)

 

 

实例:打出99乘法表

for i in range(1,10):     for j in range(1,i+1):        print('{}*{}={}\t'.format(i,j,i*j),end='')     print(" ")

 

格式化输出:中华人民共和国国内生产总值(GDP)689,136.89亿元(2015年)(千分位、2位小数,浮点数)

GDP = input('中华人民共和国国内生产总值(GDP):')GDP = str(GDP)Year  = input('输入年份:')Year = int(Year)print('{}   :    {}'.format(Year,GDP))

 

 

 

实例: 下载一首英文的歌词或文章,统计单词出现的次数,将所有,.?!替换为空格,将所有大写转换为小写。

s = '''英文歌 (5, 4, 3, 2, 1)-群星I plant a flower, plant a treePlant your hopes and plant your dreamsAnd let them grow until… (5, 4, 3, 2, 1)I’ll take you somewhere that is nearSeas of blue and fields of greenMay the heartaches soon be healedI’m just a woman but I’m for realAs strong as every man can beSo put your faith in me…I'm what I am and what you seeOnly say the words that I would keepI'm one of you'''print(s.count('I'))print(s.replace('I','i'))print(s.replace('I','my'))print(s.replace('a',' '))

 

用webbrowser,uweb.open_new_tab('url')打开校园新闻列表

import webbrowser as webfor i in range(2,5):    web.open_new_tab('http://news.gzcc.cn/html/meitishijie/'+str(i)+'.html')

 

转载于:https://www.cnblogs.com/huanglinsheng/p/7542296.html

你可能感兴趣的文章
APP抓包——Fiddler工具
查看>>
java 图片处理
查看>>
博主制作的开源JAVA WEB游戏-《天命.罗生门》
查看>>
Windows软链脚本
查看>>
IOS开发之异步加载网络图片并缓存本地实现瀑布流(二)
查看>>
足球赛事球员信息api
查看>>
那些年我们经历过的运维
查看>>
安装带有调试信息的C库
查看>>
迷宫的基本实现
查看>>
Ajax跨域请求问题
查看>>
topic4:Qt入门之常用qt控件认知之Button系列
查看>>
jstack:Java堆栈跟踪工具
查看>>
源码安装 python3
查看>>
获取当前fragment
查看>>
linux centeros 7.4 修改主机名
查看>>
关于程序员,你知道的有多少?
查看>>
Tomcat问题汇总
查看>>
由于未预料的错误,现在无法使用nautilus
查看>>
业界最有价值的Linux资料大全(200篇)
查看>>
Arraylist动态扩容详解
查看>>