파이썬 리스트 문법

hyihyi·2022년 10월 27일
0
post-custom-banner

1. 리스트 요소 추가(append,extend,insert)

numbers = []

numbers.append(5) # 1개 추가 -> [5]
numbers.extend([6, 7, 8]) # 여러 개 추가 -> [5, 6, 7, 8]
numbers.insert(2,"5.5") # 원하는 위치의 인덱스값에 요소 추가

print(numbers)   
>>>[5, 6, '5.5', 7, 8]

2. 공백 문자열 삭제

str=["","hihi","ahia",""]
print(str)
str = list(filter(None, str))
print(str)
['', 'hihi', 'ahia', '']
['hihi', 'ahia']

3. 리스트 안에 리스트 추가하기

line=[]
for i in range(5):
    N,M=input().split()
    M=int(M)
    line.append([N,M])
print(line)
a 1    
b 2
c 3
d 4
e 5
[['a', 1], ['b', 2], ['c', 3], ['d', 4], ['e', 5]]
profile
내가 이해하기 쉽게 쓰는 블로그
post-custom-banner

0개의 댓글