a = 40 # a literal whole number b = "100" # literal text a = str(a) # now it's "40" b = int(b) # now it's 100