word = input("Enter a word: ")
for letter in word:
if letter != 'L':
print(letter)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
word = input("Enter a word: ")
for letter in word:
if letter != 'L':
print(letter)