From 6d29d3de3e59f7f551367fd2b2041ede8860bce5 Mon Sep 17 00:00:00 2001 From: Suresh Krishna D <53283126+suresh-krishna-d@users.noreply.github.com> Date: Fri, 13 Mar 2026 12:21:38 +0530 Subject: [PATCH] Bug Fixed - changed raw_input as input --- project3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project3.py b/project3.py index 2b7221a..bf12897 100644 --- a/project3.py +++ b/project3.py @@ -6,9 +6,9 @@ import re -string_in = raw_input("Enter the string") +string_in = input("Enter the string") -char_rem = raw_input("Enter the character") +char_rem = input("Enter the character") def regex_strip(string_in,char_rem):