Skills : To be a master at list
list
from iteration.
From string
string = 'Hello, Python!'
list(string)
['H', 'e', 'l', 'l', 'o', ',', ' ', 'P', 'y', 't', 'h', 'o', 'n', '!']
From tuple
tup = ('a', 'b', 'c')
tup_packed = 'a', 'b', 'c'
From dictionary
dict = {'key_name':'Austin', 'value_name' : 'student'}
list(dict.items()) # [('key_name', 'Austin'), ('value_name', 'student')]
# a list of tuple which is composed of key and value from dictionary
list(dict.keys()) # ['key_name', 'value_name']
# a list of keys from dictionary
list(dict.values()) # ['Austin', 'student']
# a list of values from dictionary
list_c = list(range(1,10,1))
list_c
From list
List Comprehension
old_list = [1,2,3]
new_list = [i*2 for i in old_list] # [2, 4, 6]
From map() object
Map()
old_list = ['1', '2', '3']
new_list = list(map(int, old_list)) # [1, 2, 3]
From range() object
list(range(1,11,1))
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
From zip() object
list_a = [1,2,3]
list_b = [4,5,6]
tup_a = ('a','b','c')
tup_b = ('d','e','f')
list(zip(list_a, list_b, tup_a, tup_b))
break list
# break list
aaa = [1,2,3]
print(*aaa)
1 2 3
print better way
aaa = [[1,2,3],[4,5,6],[7,8,9]],[[10,11,12],[13,14,15],[16,17,18]]
for i, row in enumerate(aaa):
print(i)
print(*row, sep='\n')
print()
0
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
1
[10, 11, 12]
[13, 14, 15]
[16, 17, 18]
Author And Source
이 문제에 관하여(Skills : To be a master at list), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ziwe_ek/All-the-ways-to-make-list
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
string = 'Hello, Python!'
list(string)
['H', 'e', 'l', 'l', 'o', ',', ' ', 'P', 'y', 't', 'h', 'o', 'n', '!']
tup = ('a', 'b', 'c')
tup_packed = 'a', 'b', 'c'
From dictionary
dict = {'key_name':'Austin', 'value_name' : 'student'}
list(dict.items()) # [('key_name', 'Austin'), ('value_name', 'student')]
# a list of tuple which is composed of key and value from dictionary
list(dict.keys()) # ['key_name', 'value_name']
# a list of keys from dictionary
list(dict.values()) # ['Austin', 'student']
# a list of values from dictionary
list_c = list(range(1,10,1))
list_c
From list
List Comprehension
old_list = [1,2,3]
new_list = [i*2 for i in old_list] # [2, 4, 6]
From map() object
Map()
old_list = ['1', '2', '3']
new_list = list(map(int, old_list)) # [1, 2, 3]
From range() object
list(range(1,11,1))
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
From zip() object
list_a = [1,2,3]
list_b = [4,5,6]
tup_a = ('a','b','c')
tup_b = ('d','e','f')
list(zip(list_a, list_b, tup_a, tup_b))
break list
# break list
aaa = [1,2,3]
print(*aaa)
1 2 3
print better way
aaa = [[1,2,3],[4,5,6],[7,8,9]],[[10,11,12],[13,14,15],[16,17,18]]
for i, row in enumerate(aaa):
print(i)
print(*row, sep='\n')
print()
0
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
1
[10, 11, 12]
[13, 14, 15]
[16, 17, 18]
Author And Source
이 문제에 관하여(Skills : To be a master at list), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ziwe_ek/All-the-ways-to-make-list
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
dict = {'key_name':'Austin', 'value_name' : 'student'}
list(dict.items()) # [('key_name', 'Austin'), ('value_name', 'student')]
# a list of tuple which is composed of key and value from dictionary
list(dict.keys()) # ['key_name', 'value_name']
# a list of keys from dictionary
list(dict.values()) # ['Austin', 'student']
# a list of values from dictionary
list_c = list(range(1,10,1))
list_c
List Comprehension
old_list = [1,2,3]
new_list = [i*2 for i in old_list] # [2, 4, 6]
From map() object
Map()
old_list = ['1', '2', '3']
new_list = list(map(int, old_list)) # [1, 2, 3]
From range() object
list(range(1,11,1))
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
From zip() object
list_a = [1,2,3]
list_b = [4,5,6]
tup_a = ('a','b','c')
tup_b = ('d','e','f')
list(zip(list_a, list_b, tup_a, tup_b))
break list
# break list
aaa = [1,2,3]
print(*aaa)
1 2 3
print better way
aaa = [[1,2,3],[4,5,6],[7,8,9]],[[10,11,12],[13,14,15],[16,17,18]]
for i, row in enumerate(aaa):
print(i)
print(*row, sep='\n')
print()
0
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
1
[10, 11, 12]
[13, 14, 15]
[16, 17, 18]
Author And Source
이 문제에 관하여(Skills : To be a master at list), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ziwe_ek/All-the-ways-to-make-list
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
old_list = ['1', '2', '3']
new_list = list(map(int, old_list)) # [1, 2, 3]
list(range(1,11,1))
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
From zip() object
list_a = [1,2,3]
list_b = [4,5,6]
tup_a = ('a','b','c')
tup_b = ('d','e','f')
list(zip(list_a, list_b, tup_a, tup_b))
break list
# break list
aaa = [1,2,3]
print(*aaa)
1 2 3
print better way
aaa = [[1,2,3],[4,5,6],[7,8,9]],[[10,11,12],[13,14,15],[16,17,18]]
for i, row in enumerate(aaa):
print(i)
print(*row, sep='\n')
print()
0
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
1
[10, 11, 12]
[13, 14, 15]
[16, 17, 18]
Author And Source
이 문제에 관하여(Skills : To be a master at list), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ziwe_ek/All-the-ways-to-make-list
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
list_a = [1,2,3]
list_b = [4,5,6]
tup_a = ('a','b','c')
tup_b = ('d','e','f')
list(zip(list_a, list_b, tup_a, tup_b))
# break list
aaa = [1,2,3]
print(*aaa)
1 2 3
aaa = [[1,2,3],[4,5,6],[7,8,9]],[[10,11,12],[13,14,15],[16,17,18]]
for i, row in enumerate(aaa):
print(i)
print(*row, sep='\n')
print()
0
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
1
[10, 11, 12]
[13, 14, 15]
[16, 17, 18]
Author And Source
이 문제에 관하여(Skills : To be a master at list), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ziwe_ek/All-the-ways-to-make-list저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)