Notice
Recent Posts
Recent Comments
Link
투케이2K
52. (python/파이썬) update 사용해 set 배열 데이터 다중 (multi) 삽입 수행 실시 본문
[개발 환경 설정]
개발 툴 : SublimeText (PyScript)
개발 언어 : python
[소스 코드]
<!DOCTYPE HTML>
<html lang="ko">
<head>
<title>WebTest</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- [pyScript 사용 관련 CDN 설정 실시] -->
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
<!-- [pyScript 구문 정의 실시] -->
<py-script>
print("=====================================")
print("[main start]")
print("=====================================")
# [초기 변수 선언 실시]
set_Data_1 = set([1, 2, 3, 4, 5])
print("set_Data_1 : {}".format(set_Data_1))
# [update 사용해 다중 데이터 동시 삽입 실시]
set_Data_1.update([6, 7, 8])
print("set_Data_1 : {}".format(set_Data_1))
</py-script>
</head>
<!-- [body 콘텐츠 작성] -->
<body>
</body>
</html>
[결과 출력]
반응형
'Python' 카테고리의 다른 글
54. (python/파이썬) 배열 (array) 에 초기값 지정 및 데이터 삽입 실시 - array fill (0) | 2022.08.04 |
---|---|
53. (python/파이썬) 삼항식을 사용해 if else 조건 분기 처리 실시 (0) | 2022.08.03 |
51. (python/파이썬) difference 사용해 배열 차집합 데이터 출력 실시 (0) | 2022.07.30 |
50. (python/파이썬) union 사용해 배열 합집합 데이터 출력 실시 (0) | 2022.07.30 |
49. (python/파이썬) intersection 사용해 배열 교집합 (같은) 데이터 출력 실시 (0) | 2022.07.30 |
Comments