2. Assign 'Kamal to a variable
n and 'Gupta' to a variable title,
then concat these two variables
and assign it to a variable
full_name
Python expression
Answers
Answered by
1
Answer:
n = "Kamal"
title= " Gupta"
a = n + title
print (a)
Explanation:
Similar questions