List () function in Python
List () creates a list in Python. So what is the syntax of list () function, what parameters does it have and how to use it? Invites you to read the track.
List () creates a list in Python. So what is the syntax of list () function, what parameters does it have and how to use it? Invites you to read the track.
The syntax of list () function in Python
list([iterable])
Parameter of list function ()
The list () list creation function in Python has a unique parameter:
- iterable : an object can be string, tuple, set, dictionary or iterator iterative object
The value returned from the list
- If the parameter is not passed, list () will create an empty list
- If iterable is passed as a parameter, it creates a list of iterable elements
Example 1: Create list from string, tuple, list
# danh sách trống
print(list())
# chuỗi nguyên âm
nguyenamString = 'aeiou'
print(list(nguyenamString))
# tuple nguyên âm
# viết bởi TipsMake.com
nguyenamTuple = ('a', 'e', 'i', 'o', 'u')
print(list(nguyenamTuple))
# danh sách nguyên âm
nguyenamList = ['a', 'e', 'i', 'o', 'u']
print(list(nguyenamList))
Run the program, the result is:
[]
['a', 'e', 'i', 'o', 'u']
['a', 'e', 'i', 'o', 'u']
['a', 'e', 'i', 'o', 'u']
Example 2: Create list of words set, dictionary
# set nguyên âm
nguyenamSet = {'a', 'e', 'i', 'o', 'u'}
print(list(nguyenamSet))
# dictionary nguyên âm
nguyenamDictionary = {'a': 1, 'e': 2, 'i': 3, 'o':4, 'u':5}
print(list(nguyenamDictionary))
Running the program results in:
['e', 'o', 'a', 'i', 'u']
['e', 'o', 'u', 'a', 'i']
Example 3: Create list from iterator object
class PowTwo:
def __init__(self, max):
self.max = max
def __iter__(self):
self.num = 0
return self
def __next__(self):
if(self.num >= self.max):
raise StopIteration
result = 2 ** self.num
self.num += 1
return result
powTwo = PowTwo(5)
powTwoIter = iter(powTwo)
print(list(powTwoIter))
Running the program results in:
[1, 2, 4, 8, 16]
See also: Built-in Python functions
Update 25 May 2019
You should read it
- Zip () function in Python
- The map () function in Python
- The function dir () in Python
- Max () function in Python
- The function set () in Python
- The next () function in Python
- The function id () in Python
- The oct () function in Python
- Int () function in Python
- The ord () function in Python
- The pow () function in Python
- Sum () function in Python
Maybe you are interested
Seafaring need to prepare? Pocket checklist of 17 essentials when traveling this summer What does the 'super slow' 7680fps movie recording feature on the Mate 30 Pro do? Hitman Sniper famous game is being free on iOS and Android How to create slow motion videos on Android? 8 ways to win people's hearts 6 tips to help you get out of debt