What will be printed out as a result of these actions?
new_dict = {"a": 6, "b": 3}
new_dict['a'] = new_dict['a'] / new_dict['b']
print(new_dict['a'] + new_dict['b'])
Remember that
/ returns a floating-point number and // returns an integer.