From 798c80904e7714858056ce69e2aa63bb0881a7b8 Mon Sep 17 00:00:00 2001 From: ironreactor <116426430+ironreactor@users.noreply.github.com> Date: Fri, 28 Oct 2022 00:27:30 +0530 Subject: [PATCH] Add files via upload --- 2022-Oct/06 Oct 2022/Sai_Chouhan.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 2022-Oct/06 Oct 2022/Sai_Chouhan.py diff --git a/2022-Oct/06 Oct 2022/Sai_Chouhan.py b/2022-Oct/06 Oct 2022/Sai_Chouhan.py new file mode 100644 index 00000000..c0c5d335 --- /dev/null +++ b/2022-Oct/06 Oct 2022/Sai_Chouhan.py @@ -0,0 +1,6 @@ +s = input() +li = s.split(" ") +for i in range(len(li)): + li[i] = li[i][::-1] + +print(*li) \ No newline at end of file