break-the-ice-with-python icon indicating copy to clipboard operation
break-the-ice-with-python copied to clipboard

Create question-91-solution

Open mishrasunny-coder opened this issue 3 years ago • 0 comments

solution for question 91

l = [] string = input("Enter the string: ").split(' ') for i in range(len(string)):

l.append(string[len(string)-i-1][::-1])

a = ' '.join(l)

mishrasunny-coder avatar Aug 13 '22 01:08 mishrasunny-coder