python3倒叙字符串

本文介绍了一种使用Python实现的特殊字符串处理方法,即将一个句子中的单词顺序完全颠倒,但保持每个单词内部字母顺序不变。通过示例代码展示了如何进行字符串分割、倒序排列及重新组合。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

google测试工程师的一道题:
设计一个函数,使用任意语言,完成以下功能:
一个句子,将句子中的单词全部倒排过来,但单词的字母顺序不变。比如,This is a real world,输出结果为
world real a is this.

下面利用python来实现:

句子为:

 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)

结果:

 

转载于:https://www.cnblogs.com/TTyb/p/5903216.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值