Computer Science, asked by shrutimay2003, 5 months ago

Given three list as List1=['a','b','d'], list2=['h','i','t'), 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.​

Answers

Answered by Anushka180605
1

Answer:

A list object is mutable in Python. Python list is sequences; Each list item is assigned to its position or index. Python list is the most widely used data structure, and a good understanding of list operations is necessary. This Python list exercise aims to help developers to learn and practice list operations to improve understanding of the Python list. All questions are tested on Python 3.

Further Reading:

Explore All Python Exercises and Python Quizzes to practice Python

Also, try to solve a Python List Quiz

What included in this Python list exercise?

The exercise contains 10 questions and solutions provided for each question. This Python list coding exercise is nothing but Python List assignments to solve, where you can solve and practice different list programs, questions, problems, and challenges.

Each question includes a specific list related topic you need to practice. This list exercise covers questions on the following topics:

Python List operations and manipulations

Python List functions

Python list slicing

Python list comprehension

When you complete each question, you get more familiar with the Python list. Let us know if you have any alternative solutions. It will help other developers.

Similar questions