Answers for "explicit and implicit type conversion python"

1

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))
Posted by: Guest on June-22-2021

Code answers related to "explicit and implicit type conversion python"

Python Answers by Framework

Browse Popular Code Answers by Language