# Introduction In this challenge we will implement a dictionary class called `ImmutableDict` in Python. This class will create dictionaries that cannot be modified, i.e. any attempt to modify or update the data will result in a `TypeError` exception being thrown. The goal is to create an immutable dictionary that supports all the data retrieval methods of the built-in Python dictionary.
Click the virtual machine below to start practicing