#write a program that prints out all the elements of
the list
# are less than 5
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55,
89,6,5,3,2,1,7,9]
for x in a:
if x < 5:
print(x)
#Ask the user for a string and print out whether this
string is a
# palindrome or not.
Print("Input a text!")
txt= input()
if txt == txt[::-1]:
print("This is a palindrome")
else:
print("This is not a Palindrome")
What would I put so that the previous code doesn't affect the future code for these python exercises? am new to python :(