본문 바로가기

Programming/Python

set.update()

여러 개의 값을 한꺼번에 추가(update)할 때는 다음과 같이 진행

s1 = set([1,2,3])
s1.update([4,5,6])
s1
{1,2,3,4,5,6}

'Programming > Python' 카테고리의 다른 글

any/all(), enumerate()  (0) 2024.06.23
startswith, endswith  (0) 2024.04.14