基于python3实现倒叙字符串


Posted in Python onFebruary 18, 2020

这篇文章主要介绍了基于python3实现倒叙字符串,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

google测试工程师的一道题:

设计一个函数,使用任意语言,完成以下功能:

一个句子,将句子中的单词全部倒排过来,但单词的字母顺序不变。比如,This is a real world,输出结果为

world real a is this.

下面利用python来实现:

句子为:

基于python3实现倒叙字符串

代码如下

#!/usr/bin/env python3.4
# -*- coding: utf-8 -*-

#某一段文字
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."

#按照空格分割
strings = data.split()
arr = []

#打印出来
for string in strings:
  arr.append(string)

#将文本倒叙
arr.reverse()
# 按照空格将文本变为字符串
newstring = " ".join(arr)

print(newstring)

结果:

基于python3实现倒叙字符串

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python 二分查找和快速排序实例详解
Oct 13 Python
详解python使用递归、尾递归、循环三种方式实现斐波那契数列
Jan 16 Python
python3 实现一行输入,空格隔开的示例
Nov 14 Python
解决python3 pika之连接断开的问题
Dec 18 Python
解决Django中多条件查询的问题
Jul 18 Python
python的pstuil模块使用方法总结
Jul 26 Python
Python Django 前后端分离 API的方法
Aug 28 Python
python实发邮件实例详解
Nov 11 Python
python GUI库图形界面开发之PyQt5下拉列表框控件QComboBox详细使用方法与实例
Feb 27 Python
Python加载数据的5种不同方式(收藏)
Nov 13 Python
python连接mongodb数据库操作数据示例
Nov 30 Python
matplotlib实现数据实时刷新的示例代码
Jan 05 Python
Python日期格式和字符串格式相互转换的方法
Feb 18 #Python
Python数组并集交集补集代码实例
Feb 18 #Python
通过python检测字符串的字母
Feb 18 #Python
Python安装whl文件过程图解
Feb 18 #Python
python下载卫星云图合成gif的方法示例
Feb 18 #Python
如何使用python传入不确定个数参数
Feb 18 #Python
scrapy数据存储在mysql数据库的两种方式(同步和异步)
Feb 18 #Python
You might like
星际流派综述
2020/03/04 星际争霸
php 字符转义 注意事项
2009/05/27 PHP
获取用户Ip地址通用方法与常见安全隐患(HTTP_X_FORWARDED_FOR)
2013/06/01 PHP
深入解析php中的foreach函数
2013/08/31 PHP
Symfony学习十分钟入门经典教程
2016/02/03 PHP
PHP对称加密算法(DES/AES)类的实现代码
2017/11/14 PHP
php和js实现根据子网掩码和ip计算子网功能示例
2019/11/09 PHP
7款吸引人眼球的jQuery/CSS3特效实例分享
2013/04/25 Javascript
在JavaScript的jQuery库中操作AJAX的方法讲解
2015/08/15 Javascript
AngularJs html compiler详解及示例代码
2016/09/01 Javascript
webpack3+React 的配置全解
2017/08/21 Javascript
angularJs中ng-model-options设置数据同步的方法
2018/09/30 Javascript
Vue 用Vant实现时间选择器的示例代码
2019/10/25 Javascript
vue实现路由不变的情况下,刷新页面操作示例
2020/02/02 Javascript
[01:13]2014DOTA2西雅图邀请赛 舌尖上的TI4
2014/07/08 DOTA
35个Python编程小技巧
2014/04/01 Python
python根据文件大小打log日志
2014/10/09 Python
在Python中使用base64模块处理字符编码的教程
2015/04/28 Python
Django 使用logging打印日志的实例
2018/04/28 Python
Python二进制文件读取并转换为浮点数详解
2019/06/25 Python
python实现批量修改服务器密码的方法
2019/08/13 Python
pyMySQL SQL语句传参问题,单个参数或多个参数说明
2020/06/06 Python
在keras里面实现计算f1-score的代码
2020/06/15 Python
纯CSS3实现手风琴风格菜单具体步骤
2013/05/06 HTML / CSS
Jar包的作用是什么
2014/03/30 面试题
品恩科技软件测试面试题
2014/10/26 面试题
AJAX应用和传统Web应用有什么不同
2013/08/24 面试题
初中生个人学习的自我评价
2013/12/04 职场文书
财政局长自荐信范文
2013/12/22 职场文书
群众路线教育实践活动心得体会(教师)
2014/10/31 职场文书
九华山导游词
2015/02/03 职场文书
材料员岗位职责
2015/02/10 职场文书
2015年度女工工作总结
2015/10/22 职场文书
你会写请假条吗?
2019/06/26 职场文书
《杜鹃的婚约》OP主题曲「凸凹」无字幕影像公开
2022/04/08 日漫
使用 MybatisPlus 连接 SqlServer 数据库解决 OFFSET 分页问题
2022/04/22 SQL Server