If yes so can we conclude that in python we can update mutable datatypes anywhere inside program without global keyword and we cannot update immutable datatypes without global keyword?
>Solution :
global keyword pertains to the scope of a variable, not mutability.
global is used to make a locally assigned variable available globally.