목록분류 전체보기 (317)
printf("ho_tari\n");
import sklearn from sklearn.datasets import load_iris from sklearn.tree import DecisionTreeClassifier from sklearn.model_selection import train_test_split import pandas as pd # Iris 데이터셋을 로드합니다. iris = load_iris() # iris는 Bunch 객체로, 다양한 정보를 포함하고 있습니다. # 데이터의 타입을 확인합니다. type(iris) # bunch는 사전(dictionary)과 비슷한 데이터 타입입니다. # Iris 데이터의 특성(Features)을 출력합니다. print(iris['data']) # Iris 데이터에 포함된 키(필드)들을 ..
import pandas as pd # 판다스를 사용하여 'titanic_train.csv' 파일을 읽어 데이터프레임을 생성 df = pd.read_csv('titanic_train.csv') print(df) # 데이터프레임 출력 # 'Age' 열의 누락된 값을 해당 열의 평균값으로 대체 df['Age'].fillna(df['Age'].mean(), inplace=True) # 'Cabin'과 'Embarked' 열의 누락된 값을 각각 'N'으로 대체 df['Cabin'].fillna('N', inplace=True) df['Embarked'].fillna('N', inplace=True) # 'Sex'와 'Survived' 열을 기반으로 그룹화하고, 각 그룹별로 'Survived' 값의 개수를 세어 ..
# 전체 SoccerPlayer 코드 class SoccerPlayer(object): def __init__(self, name, position, back_number): self.name = name self.position = position self.back_number = back_number def change_back_number(self, new_number): print("선수의 등번호를 변경한다: From %d to %d" % (self.back_number, new_number)) self.back_number = new_number def __str__(self): return "Hello, My name is %s. I play in %s in center." % (self.na..
# 일반적인 함수 def f(x, y): return x + y print(f(1, 4)) # 람다 함수(lambda) f = lambda x, y: x + y print(f(1, 4)) f = lambda x: x ** 2 print(f(3)) f = lambda x: x / 2 print(f(3)) ex = [1, 2, 3, 4, 5] f = lambda x: x ** 2 print(list(map(f, ex))) # 일반적인 반복문 ex = [1, 2, 3, 4, 5] f = lambda x: x ** 2 for value in map(f, ex): print(value) # 리스트 컴프리헨션 ex = [1, 2, 3, 4, 5] print([x ** 2 for x in ex]) # 일반적인 반복문..
colors = ['red', 'blue', 'green', 'yellow'] result = ''.join(colors) # join()을 활용하여 리스트의 각 요소를 빈칸 없이 연결 print(result) result = ''.join(colors) # 연결 시, 1칸을 띄고 연결 print(result) result = ', '.join(colors) # 연결 시 ","로 연결 print(result) result = '-'.join(colors) # 연결 시 "-"로 연결 print(result) items = 'zero one two three'.split() # 빈칸을 기준으로 문자열 분리 print(items) example = 'python,jquery,javascript' # ","를 ..
word = input("Input a word: ") world_list = list(word) print(world_list) result = [] for _ in range(len(world_list)): result.append(world_list.pop()) print(result) print(word[::-1]) s = set([1, 2, 3, 1, 2, 3]) # set() 함수를 사용하여 1, 2, 3을 세트 객체로 생성 print(s) s.add(1) # 1을 추가하는 명령이지만 중복 불허로 추가되지 않음 print(s) s.remove(1) # 1 삭제 print(s) s.update([1, 4, 5, 6, 7]) # [1, 4, 5, 6, 7] 추가 print(s) s.discard(..
f = open("chapter6/yesterday.txt", 'r') yesterday_lyric = f.readlines() f.close() contents = "" for line in yesterday_lyric: contents = contents + line.strip() + "\n" n_of_yesterday = contents.upper().count("YESTERDAY") print("Number of a Word 'Yesterday'", n_of_yesterday) [Verse 1] Yesterday All my troubles seemed so far away Now it looks as though they're here to stay Oh, I believe in yesterda..
def calculate_rectangle_area(x, y): return x * y rectangle_x = 10 rectangle_y = 20 print("사각형 x의 길이:", rectangle_x) print("사각형 y의 길이:", rectangle_y) # 넓이를 구하는 함수 호출 print("사각형의 얿이:", calculate_rectangle_area(rectangle_x, rectangle_y)) def f(x): return 2 * x + 7 def g(x): return x ** 2 x = 2 print(f(x) + g(x) + f(g(x)) + g(f(x))) def a_rectangle_area(): print(5 * 7) def b_rectangle_area(x, y): pr..