diff --git a/src/05_lists.py b/src/05_lists.py index cfccc4e945..2f46a115f7 100644 --- a/src/05_lists.py +++ b/src/05_lists.py @@ -22,8 +22,13 @@ # YOUR CODE HERE print(x) +# Change x so that it is [1, 2, "Hello", "World", 4.5, "a"] +# YOUR CODE HERE +print(x) + + # Print the length of list x # YOUR CODE HERE # Print all the values in x multiplied by 1000 -# YOUR CODE HERE \ No newline at end of file +# YOUR CODE HERE