print("\n👩🍳 Instructions:") for step_num, step in enumerate(recipe_dict["instructions"], 1): print(f" step_num. step")
for n in range(2, 10): if n % 2 == 0: print(f"n is even") break else: print("No even numbers found") # Executes only if no break codehs python 3.5.9 recipe