赞
踩
分类:字符串
知识点:
字符串是否为空 if not my_str
字符串逆序 my_str[::-1]
题目来自【牛客】
- def reverse_string(s):
- # 判断字符串是否为空或只包含空格
- if not s.strip():
- return ""
-
- # 使用Python的切片语法反转字符串
- reversed_s = s[::-1]
-
- return reversed_s
-
- input_str = input().strip()
- print(reverse_string(input_str))
by 软件工程小施同学
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。