Variables & Data Types
//Text
character_name = "John"
//Numeric
character_age = 50.5678213
//Boolean
is_male = True
print("There once was a man named " + character_name + ", ")
//Output : There once was a man named John,
print("he was " + str(character_age) + " years old. ")
//Output : he was 50.5678213 years old.
character_name = "Mike"
print("He really liked the name " + character_name + ", ")
//Output : He really liked the name Mike,
print("but didn't like being " + str(character_age) + ".")
//Output : but didn't like being 50.5678213.