Need to activate a while loop if a user inputted file is found, the in the "while" loop have a "try" that opens the file if the file is found
def main():
  customer_file = input("Enter the name of the file ")
  while _____:
    try:
      input_file = open(customer_file, "r")
    except FileNotFoundError:
      print("Invalid file Name")
  line = input_file.readline()
main()
 
     
    