Count the marks

Report a typo

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.
Select one option from the list
___

Create a free account to access the full topic