What will be the output of the following code snippet? groce…
What will be the output of the following code snippet? groceries = [‘eggs’, ‘waffles’, ‘yogurt’, ‘apples’, ‘sorbet’]for index, item in enumerate(groceries): if index % 2 == 0: print(item, end=” “)
Read Details