this is my function:
import string
def normal_string(s):
return s.translate(str.maketrans('', '', string.punctuation)).replace(" ", "").lower()
for i in range(2):
input_string = input('Enter a word: ')
normalize_string = normal_string(input_string)
l = len(normalize_string)
x = []
for i in range(l-1, -1, -1):
g = normalize_string[i]
x.append(g)
if x == list(normalize_string):
print('True')
else:
print('False')```
i have to include two examples within this and print it out but im not sure how to do that