English, asked by dewanpintu81, 1 month ago


This project is called Fictionary - Write
your
dictionary based on fictionary property you enjoy
providing definations to made- up words (Anyton).​

Answers

Answered by selvamania693
0

Answer:

Python provides another composite data type called a dictionary, which is similar to a list in that it is a collection of objects.

Here’s what you’ll learn in this tutorial: You’ll cover the basic characteristics of Python dictionaries and learn how to access and manage dictionary data. Once you have finished this tutorial, you should have a good sense of when a dictionary is the appropriate data type to use, and how to do so.

Dictionaries and lists share the following characteristics:

Both are mutable.

Both are dynamic. They can grow and shrink as needed.

Both can be nested. A list can contain another list. A dictionary can contain another dictionary. A dictionary can also contain a list, and vice versa.

Explanation:

I hope you like

Similar questions