This question is on how to convert int to string.I am a novice in coding and I do not know how to convert an int value into a str value because , in python we cannot combine an int value along with a string value.So we have to convert the int value into string . Hope my question will help myself and future coders.
print("Type your age ")
character_age = input()
print("So your age is "+character_age)
print("If your father is 20 years older what will be your fathers age ?")
age_character = int(character_age)
print("Father's age is " +age_character)