Example & Tutorial understanding programming in easy ways.

How type of variable is decided in Python ?

Type of the variable in some other language are decided by the initialization of variable like 

int variable;

char s; 

etc.

-But in Python , type of the variable are automatically decide by the variable value.

like 

a=10 //  means it is integer

a='10'  //  means it is character


Read More →