# Open the file in read mode
with open('kiln.txt', 'r') as file:
# Read all lines into a list
lines = file.readlines()
# Remove any trailing newline characters from each line
lines = [line.strip() for line in lines]
# Print the list of strings
print(lines)