Answers for "change variable type python"

0

change variable type python

x = 12
str(x) #it's a String now 

number = "24"
int(number) #it's an integer now
Posted by: Guest on March-14-2021

Code answers related to "change variable type python"

Python Answers by Framework

Browse Popular Code Answers by Language