In python variable get declared when you assign value to variable first time
x=10; #x will be integer y='abcd' #y will be string print(x) print(y)
This will declare x as integer and y as string and you can also check data types as coded in below sample.
Find Type of Variable
you can use “type” keyword to find type of variable
Below is sample code and output
In Python variable names are case sensitive
x=10; #x will be integer y='abcd' #y will be string X= 'Ten' print( 'Value of small x=' ,x) print('Value of y=',y) print('Value of X=', X) print( 'Type of small x=' ,type(x)) print('Type of y=',type(y)) print('Type of X=', type(X))
Output of this code will be as below
Value of small x= 10
Value of y= abcd
Value of X= Ten
Type of small x= <class 'int'>
Type of y= <class 'str'>
Type of X= <class 'str'>