发布于 4年前

Python如何反转字符串

以下代码段使用Python切片操作来反转字符串。

# Reversing a string using slicing
my_string = "ABCDE"
reversed_string = my_string[::-1]
print(reversed_string)
# Output
# EDCBA
©2020 edoou.com   京ICP备16001874号-3