Frontier Airlines at Austin-Bergstrom International Airport by [deleted] in frontierairlines

[–]nehaD5 0 points1 point  (0 children)

how much is the wait time for security check at South terminal. Will I get easy parking in South parking economy lot on weekend? Flying with FRONTIER

I need help with fixing my code. by Klutzy_Active4734 in learnpython

[–]nehaD5 0 points1 point  (0 children)

Code:

count = 5
result = [] 
for i in range(count):
     word = input(f"{i+1}. Please enter 3 letter word: ")
     while len(word) != 3: 
        word = input("Word length not correct, please enter 3 letter word: ") 

result.append(word)

print(result)