Simple types / Boolean

sunIsStar = True
strSun = str(sunIsStar)
# strStar is "True"

earthIsStar = False
strEarth = "%s" % earthIsStar
# strEarth is "False"

print(f"{strSun = }")
print(f"{strEarth = }")