python按单词翻转字符串
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/22 功能描述:python按单词翻转字符串 """ def reverseWords(s): return ' '.join(reversed(s.split(' '))) print(reverseWords('hello pidancode.com'))
输出结果:pidancode.com hello
以上代码在python3.9环境下测试通过。
相关文章