Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python datatype print

x = 1
y ='abc"
print(type(x))
#<class 'int'>
print(type(y))
#<class 'str'>
#etc etc
 
PREVIOUS NEXT
Tagged: #python #datatype #print
ADD COMMENT
Topic
Name
7+2 =