Modifier le type de variable Python

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

number = "24"
int(number) #it's an integer now
Nervous Nightingale