Please enter a sentence: The quick brown fox jumps over the lazy dog.
Output: The brown jumps the dog
I've been doing some learning in strings in python, but no matter what I do, I can't seem to write a program that will remove the 2nd letter of every sentence.
word=(input ("enter setence"))
del word[::2]
print(word[char],
end="")
Print("\n")
This was my closest attempt. At least I was able to write the sentence on the command prompt but was unable to get the required output.