I am basically merging two dictionaries by using
update
method. The problem is when I merge in python shell
it works but not in a file while executing.
v = {'customer_id': '9000', 'customer_name': 'Apple Inc'}
b = {"a": "b"}
print v.update(b)
output of above is None
but its working in shell. What's my silly mistake? Thankyou