Python Programming Training Certification
Flexible Hours
100 Assignments
Instructor Led online Training
50 LMS Access
24X7 Support
100% Skill Level
Enquire Now
Course Overview
Python list() Function
The python list() creates a list in python.
Signature
- list(iterable)
Parameters
iterable (optional) – An object that can be a sequence( string, tuple etc.) or collection( set, dictionary etc.) or iterator object.
Return
It returns a list.
Python list() Function Example 1
The below example create a list from sequence: string, tuple and list.
- # empty list
print(list())# string
String = ‘abcde’
print(list(String))# tuple
Tuple = (1,2,3,4,5)
print(list(Tuple))
# list
List = [1,2,3,4,5]
print(list(List))
Output:
- []
[‘a’, ‘b’, ‘c’, ‘d’, ‘e’]
[1,2,3,4,5]
[1,2,3,4,5]
Explanation: The above example creates a list from sequence: string, tuple and list.
Python list() Function Example 2
The below example create list from collection: set and dictionary.
- # set
Set = {‘a’, ‘b’, ‘c’, ‘d’, ‘e’}
print(list(Set))# dictionary
Dictionary = {‘a’: 1, ‘b’: 2, ‘c’: 3, ‘d’:4, ‘e’:5}
print(list(Dictionary))
Output:
- [‘e’, ‘c’, ‘d’, ‘b’, ‘a’]
[‘c’, ‘e’, ‘d’, ‘b’, ‘a’]
Candidate’s Journey During Our Training Program
Expert’s Advice & Selection of Module
Choosing the right type of module for the training is half the battle & Our Team of experts will help & guide you.
Get Trained
Get Trained & Learn End to End Implementation from our Expert Trainer who are working on the same domain.
Work on Projects
We Do make our student’s work on multiple case studies , scenario based tasks & projects in order to provide real-time exposure to them.
Placements
We have a dedicated placement cell in order to provide placement assistance & relevant interviews to our candididates till selection
Placement Partner