基于python3实现倒叙字符串
更新时间:2020年02月18日 12:54:01 投稿:yaominghui
这篇文章主要介绍了基于python3实现倒叙字符串,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
这篇文章主要介绍了基于python3实现倒叙字符串,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
google测试工程师的一道题:
设计一个函数,使用任意语言,完成以下功能:
一个句子,将句子中的单词全部倒排过来,但单词的字母顺序不变。比如,This is a real world,输出结果为
world real a is this.
下面利用python来实现:
句子为:
代码如下
#!/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)
结果:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Python 字符串处理特殊空格\xc2\xa0\t\n Non-breaking space
- Python日期格式和字符串格式相互转换的方法
- 通过python检测字符串的字母
- python如何把字符串类型list转换成list
- python字符串,元组,列表,字典互转代码实例详解
- python字符串下标与切片及使用方法
- python 实现字符串下标的输出功能
- python判断变量是否为int、字符串、列表、元组、字典的方法详解
- Python基础之字符串操作常用函数集合
- python字符串替换re.sub()实例解析
- Python如何访问字符串中的值
- python3 字符串知识点学习笔记
- Python输出指定字符串的方法
- python求一个字符串的所有排列的实现方法
- 详解字符串在Python内部是如何省内存的
- 代码总结Python2 和 Python3 字符串的区别
- Python字符串中删除特定字符的方法
- Python拼接字符串的7种方式详解
相关文章
python cv2读取rtsp实时码流按时生成连续视频文件方式
今天小编就为大家分享一篇python cv2读取rtsp实时码流按时生成连续视频文件方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2019-12-12Python和Anaconda和Pycharm安装教程图文详解
PyCharm是一种PythonIDE,带有一整套可以帮助用户在使用Python语言开发时提高其效率的工具,这篇文章主要介绍了Python和Anaconda和Pycharm安装教程,需要的朋友可以参考下2020-02-02Python 带你快速上手 Apache APISIX 插件开发
Apache APISIX Python Runner 来了,社区中的小伙伴们在开发 Apache APISIX 插件时又多了一种新选择,本文将用实列向大家介绍,需要的朋友可以参考下面文章内容2021-09-09
最新评论