What is the proper way to write a list comprehension that represents all the keys in this dictionary?

Advertisement

What is the proper way to write a list comprehension that represents all the keys in this dictionary?
fruits = {‘Apples’: 5, ‘Oranges’: 3, ‘Bananas’: 4}

  • fruit_names = [x in fruits.keys() for x]
  • fruit_names = for x in fruits.keys() *
  • fruit_names = [x for x in fruits.keys()]
  • fruit_names = x for x in fruits.keys()
Join our list

Subscribe to our mailing list and get interesting stuff and updates to your email inbox.

Thank you for subscribing.

Something went wrong.

Leave a Comment


Share via
Join our list

Subscribe to our mailing list and get interesting stuff and updates to your email inbox.

Thank you for subscribing.

Something went wrong.

Send this to a friend