Create a list that has four elements. Make a copy of the list and change one of the elements in the copy. Show that the same element in the original list did not change.

What will be an ideal response?

>>> num = [1, 2, 3, 4]
>>> num_copy = num[:]
>>> num_copy[0] = 9999
>>> num
[1, 2, 3, 4]
>>> num_copy
[9999, 2, 3, 4]

Computer Science & Information Technology

You might also like to view...

Critical Thinking QuestionsCase D-1You want to learn more about motion paths because you have seen them done very well, and you know that you have a lot to learn to work better with them. You deduce that because you consistently see Flash animations that use the same movements (e.g., objects fly in from the left, they bounce out in three dimensions), there must be a place in the application where these are available for you to use. After looking through your textbook, you realize that there is a cache of these. Where are they? a. in the Timeline, under the default optionb. in the Saved Movement libraryc. in the Custom Options workspaced. in the Motion Presets panel

What will be an ideal response?

Computer Science & Information Technology

The range of entries that determines the size of the slices in a Pie chart is called the category names.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology