character_name = "George"
character_age = 50
is_Male = True
print("There was once a man named " +
character_name + ",")
print("He was " + character_age + " years old.
")
character_name = "Mike"
print("He really liked the name " +
character_name + ",")
print("but didn't like being " + character_age + ".")
I am following the learnPython course on youtube, and he states early in the video that for variables, you can either put text in between parentheses or you can just do a number which does not require strings. However when I try to run the above code, it gives the error that it cannot concatenate. Please help.