前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >python3倒叙字符串

python3倒叙字符串

作者头像
机器学习和大数据挖掘
发布2019-07-02 10:51:46
发布2019-07-02 10:51:46
57700
代码可运行
举报
文章被收录于专栏:数据挖掘数据挖掘
运行总次数:0
代码可运行
代码语言:javascript
代码运行次数:0
运行
复制
google测试工程师的一道题:
设计一个函数,使用任意语言,完成以下功能:
一个句子,将句子中的单词全部倒排过来,但单词的字母顺序不变。比如,This is a real world,输出结果为
world real a is this.

下面利用python来实现:

句子为:

代码语言:javascript
代码运行次数:0
运行
复制
 1 #!/usr/bin/env python3.4
 2 # -*- coding: utf-8 -*-
 3 
 4 #某一段文字
 5 data = "You don’t need us to tell you that China’s Internet space is booming. With the world’s largest Internet user population—686 million as of January 2016—and a long way to go to reach Internet penetration levels of developed countries, China’s Internet industry is growing in both scale and influence. And as more and more Chinese users come online, Baidu continues to innovate to meet their changing needs and diverse tastes. We aim to serve the needs of our users and customers with products and solutions that prioritize the user experience and reflect our corporate culture – simple and reliable."
 6 
 7 #按照空格分割
 8 strings = data.split()
 9 arr = []
10 
11 #打印出来
12 for string in strings:
13     arr.append(string)
14 
15 #将文本倒叙
16 arr.reverse()
17 # 按照空格将文本变为字符串
18 newstring = " ".join(arr)
19 
20 print(newstring)

结果:

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016-09-24 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档