What will be the datatype of the var in the below code snippet?
var = 10 print(type(var)) var = "Hello" print(type(var))
नीचे दिए गए कोड स्निपेट में var का डेटाटाइप क्या होगा?