From 20f9558de815ddb040b106e49d74d1b401035861 Mon Sep 17 00:00:00 2001 From: mishrasunny-coder <60848759+mishrasunny-coder@users.noreply.github.com> Date: Fri, 12 Aug 2022 21:00:48 -0400 Subject: [PATCH] Create question-91-solution --- question-91-solution | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 question-91-solution diff --git a/question-91-solution b/question-91-solution new file mode 100644 index 0000000..f0d64da --- /dev/null +++ b/question-91-solution @@ -0,0 +1,8 @@ +Adding a solution for question 91 that works. Unfortunately I cannot push to a different branch other than master and create a pull request since I get 403 + +l = [] +string = input("Enter the string: ").split(' ') +for i in range(len(string)): + + l.append(string[len(string)-i-1][::-1]) +a = ' '.join(l)