Computer Science, asked by tia737, 5 months ago

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 kaurmanveer1997
1

Answer:

n = "Kamal"

title= " Gupta"

a = n + title

print (a)

Explanation:

Similar questions