Show the output of the following code:def main():d = {"red":4, "blue":1, "green":14, "yellow":2}print(d["red"])print(list(d.keys()))print(list(d.values()))print("blue" in d)print("purple" in d)d["blue"] += 10print(d["blue"])main() # Call the main function
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here