Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

implicit conversion in python example

x = 10

print("x is of type:",type(x))

y = 10.6
print("y is of type:",type(y))

x = x + y

print(x)
print("x is of type:",type(x))
 
PREVIOUS NEXT
Tagged: #implicit #conversion #python
ADD COMMENT
Topic
Name
9+2 =