#
# 反转字符串
# @param str string字符串
# @return string字符串
#
class Solution:
def solve(self , str ):
# write code here
str_new = list(str)
str_new.reverse()
return ''.join(str_new)
#
# 反转字符串
# @param str string字符串
# @return string字符串
#
class Solution:
def solve(self , str ):
# write code here
str_new = list(str)
str_new.reverse()
return ''.join(str_new)