Write a program to print concatenation of first and last name of 10 students.
Answers
Answered by
0
I will be writing the program in python3 syntax:
first_name=input('enter you first name: ')
last_name=input('enter your last name: ')
name=first_name+' '+last_name
print(name)
Similar questions