You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
programming_dictionary = {"Bug": "An error in a program that prevents the program from running as expected.", "Function": "A piece of code that you can easily call over and over again."}
print(programming_dictionary["Bug"])
programming_dictionary["loop"] = "The action of doing something over and over again"
print(programming_dictionary["loop"])
# Wipe dictionary
## programming_dictionary = {}
# Edit dictionary
programming_dictionary["loop"] = "The action of doing something over and over again 2"