fork download
  1. identifiers = ["Year", "Career", "Bible", "Moon", "Observation", "Label", "Network", "Audience", "Key", "Time"]
  2. allowed_start = ("I", "Y", "K", "L", "M", "N")
  3. IDN = [iden for iden in identifiers if iden.startswith(allowed_start)]
  4. print("Масив IDN:", IDN)
Success #stdin #stdout 0.1s 14192KB
stdin
Standard input is empty
stdout
Масив IDN: ['Year', 'Moon', 'Label', 'Network', 'Key']