1). Write a Python program to display the names of your favourite actor and actress.
pls answer
Answers
Answered by
1
list which is statically given and concatenates output will be concatenation of actor and actress.
actor = ['mahesh babu','naga chaitanya','ram']
actress = ['samantha','kajal','anushka']
print(actor + actress)
Similar questions