Do all of this in a .py file in Pycharm.

  1. paste these 2 dictionaries into your file

    internet_celebrities = {"DrDisrespect": "YouTube", "ZLaner": "Facebook", "Ninja": "Mixer"}
    another_one = {"shroud": "Twitch"}
  2. use .update() to add the contents of another_one to internet_celebrities.

  3. create a variable and assign it a copy of internet_celebrities.

  4. use the .clear() method to get rid of the contents of internet celebrities.

  5. print internet_celebrities.

  6. print the variable you created in step 3.