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
2
Answer:
Explanation:
list1.extend(list2)
list3.extend(list1)
print(list3)
for i in range(15,20):
print(i**3)
Similar questions
Social Sciences,
4 months ago
Science,
4 months ago
English,
4 months ago
Math,
8 months ago
Physics,
1 year ago