# Define a list my_list = [10, 20, 30, 40, 50] # Get the first element (index 0) first_element = my_list[0] print(f"First Element: {first_element}")