From 7c656518995781e9a3700824670445a7b01316f3 Mon Sep 17 00:00:00 2001 From: rachealben <133984839+rachealben@users.noreply.github.com> Date: Tue, 9 Apr 2024 18:21:42 +0100 Subject: [PATCH] Update 029_lists.py --- 029_lists.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/029_lists.py b/029_lists.py index aa444718..c7d3ae91 100644 --- a/029_lists.py +++ b/029_lists.py @@ -25,8 +25,8 @@ # @TASK Try making your own here: -your_list = ... -print(your_list) +my_favourite_thing_to_eat = ["Rice", "Salmon", "Noodles", "Doughnuts"] +print(my_favourite_thing_to_eat) # @TASK and print it out by running: