For loop through all sequence objects

Hello people of blender,
I am incredibly new to python, and I have a quick question about code involving the sequence editor. I have a code set up:

names = [‘Cross’,‘Cross.001’,‘Cross.002’]
for x in names:
bpy.data.scenes[“Scene”].sequence_editor.sequences_all[x].blend_alpha = 0.5

that allows me to for-loop through all of the names in an array. Is there any way to return all of the names in “sequences_all”? That way I could cut out the array entirely?


import bpy

names = [i.name for i in bpy.context.scene.sequence_editor.sequences_all]