dictionary are ___ data types of python
Answers
Answer:
Data science can be defined as a blend of mathematics, business acumen, tools, algorithms and machine learning techniques, all of which help us in finding out the hidden insights or patterns from raw data which can be of major use in the formation of big business decisions
Explanation:
Answer:
Dictionary are mutable data types of python.
Explanation:
Python has a special data type, called a dictionary that can store the data in the form of key-value pairs.
Dictionary in python is a mutable type, which means we can modify the data of the dictionary.
Creating a Dictionary
A dictionary is created with either the dict() function or by using the {} curly brackets.
Syntax:
example = {"key1": val1,
"key2": val2
}
Keys of the Dictionary
The keys of the dictionary are immutable, which means once you create the keys later you cannot modify them.
Values of the Dictionary
Dictionary contains mutable values. That means once values are given later they can be modified, added, or deleted.
#SPJ2