Correct way

Report a typo

There's a tuple with items to buy, the one from the theory part:

shopping_tuple = ("chicken", "rice", "curry sauce", "carrots", "milk")

Let's say we want to add "donuts" to the tuple. As you know, we cannot alter the tuple itself, so in order to add another item, we create a new tuple new_shopping_tuple. What is the correct way to add one string item to the tuple of strings using the adding operation +? Define the variable new_shopping_tuple in the code below. The initial shopping_tuple is already defined.

Tip: Note that we cannot add a tuple and a string as-is. Do you remember how to define a one-item tuple?

Write a program in Python 3
new_shopping_tuple = ... # your code here
___

Create a free account to access the full topic