im very new to coding so i want to know how to do this, sorry if its a newbie question i want so that where its "str(new_patient) + "" says "you are a new patient!" but instead i got True as a result, the phrase should look like " His name is John Smith he is 20 years old and is a new patient
name = "John Smith"
age = 20
new_patient = True
if new_patient:
print("a new new_patient")
else:
print("you are not a new patient")
print("His name is " + name + " he is " +str(age) + " old and is a "+ str(new_patient) + "")