Computer Science, asked by anish4416, 8 months ago

7. Given three list as List1=['a','b','d'], list2=['h','1',''), list3=['0','1','2')
Write a program that adds individual elements of list2 and list3 to list 1. The resultant list
should be in the order of elements of list3 ,elements of 1 and elements of list2.


3. Write a program to print cubes of numbers in the range 15 to 20.



PLEASE ANSWER AS SOON AS POSSIBLE

Answers

Answered by harika555
2

Answer:

Explanation:

list1.extend(list2)    

list3.extend(list1)

print(list3)

for i in range(15,20):

        print(i**3)

Similar questions