Computer Science, asked by ramsmedicine, 12 days ago

Write a Python program to assign the first name, middle name & last name to the given
variables then concatenate the names to display the full name by assigning it to the variable
fullname.

Variable Value
FN MARY
MN CHRISTEN
LN GEORGE
Hint: fullname=FN +” “+ MN + ” “ + LN

pls tell me correct answer

Answers

Answered by aj200260
2

Answer:

FN="MARY"

MN="CHRISTEN"

LN="GEORGE"

FULLNAME=FN+" "+MN+" "+LN

print(FULLNAME)

PLEASE MARK ME AS BRAINLIEST!

THANK YOU!

Similar questions