[Python] 튜플 자료형
튜플 자료형(순서O, 중복O, 수정X, 삭제X) # 불변 b = (1, ) # 1개일 때 , 없으면 tuple로 인식 안함 # 팩킹 & 언팩킹(Packing, and Unpacking) # 팩킹 & 언팩킹 t2 = (1, 2, 3) # t2 = 1, 2, 3 # 팩킹 t3 = (4,) # t3 = 4, # 팩킹 x1, x2, x3 = t2 # 언팩킹 x4, x5, x6 = 4, 5, 6 # 언팩킹 print(t2) print(t3) print(x1, x2, x3) print(x4, x5, x6) 출처 : 인프런,인프런, 2023-03-10, https://www.inflearn.com/course/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D-%ED%8C%8C%EC%9..
[Python] 리스트 자료형
리스트 자료형(순서O, 중복O, 수정O, 삭제O) # 값 비교 print(c == c[:3] + c[3:]) # 리스트 함수 a = [5, 2, 3, 1, 4] a.append(10) a.sort() # 정렬 a.reverse() # 역순 정렬 print(a.index(3), a[3]) # 결과 값: 3 3 a.insert(2, 7) del a[7] a.remove(10) a.pop() ex = [8, 9] a.extend(ex) # 삭제 remove, pop, del 출처 : 인프런,인프런, 2023-03-10, https://www.inflearn.com/course/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D-%ED%8C%8C%EC%9D%B4%EC%8D%AC-%..
[Python] 기본 외장 함수
# 실제 프로그램 개발 중 자주 사용 # 종류 : sys, pickle, os, shutil, glob, temfile, time, random 등 # sys : 실행 관련 제어 import sys # print(sys.argv) sys.argv[0] # python 실행 경로 sys.exit() # 강제 종료 print(sys.path) # 파이썬 패키지 위치 # pickel : 객체 파일 쓰기 import pickle f = open("test.obj", 'wb') # 쓰기 obj = {1: 'python', 2: 'study', 3: 'basic'} pickle.dump(obj, f) f.close() f = open("test.obj", 'rb') # 읽기 data = pickle.load(f) ..