본문 바로가기
728x90

Research446

F-string에 대해 What is F-string? In Python, there are many ways to format text strings. We know %-formatting, str.format() and string.Template. Inspite of advantages of those methods, there are still tricky points to use in practice. This is why we should use F-string. How to use? F-string is minimal and flexible. And f-string is an expression evaluated at run time, not a constant value. In Python source code,.. 2021. 10. 18.
2차원 리스트에 대해 2차원 리스트의 정의 2차원 리스트란 1차원 리스트를 여러개 연결한 것이다. # 1차원 리스트 a = [10, 20, 30] ​ # 2차원 리스트(3x4) a = [[10, 20, 30, 40], [50, 60, 70, 80], [90, 100, 110, 120]] # 위 1, 2차원 리스트들을 아래와 같이 comprehension문으로 만들 수 있다. numList = [] # 1차원 리스트 for num in range(10, 40, 10): numList.append(num) numList > [10, 20, 30] ​ # 2차원 리스트 numList = [[0 for _ in range(4)] for _ in range(3)] numList >[[0, 0, 0, 0], [0, 0, 0, 0], [.. 2021. 10. 18.
Python의 map() 함수 Python의 map() function에 대해 알아보자. map()function은 파이썬의 내장 함수 중 하나로 설명은 아래와 같다. Return an iterator that applies function to every item of iterable, yeilding the results. If additional iterable arguments are passed, function must take that many arguments and is applied to the items from all iterables in parallel. With multiple iterables, the iterator stops when the shortest iterable is exhausted. .... 2021. 10. 18.
Pandas 데이터에 일괄 함수 적용하기 Pandas DataFrame의 각 데이터들에 특정 함수를 일괄적으로 적용하는 방법을 알아보자. get_category함수를 정의해주자. 이 함수는 정수의 나이값을 문자열의 연령대로 바꿔주는 함수다. 이 함수를 lambda 문법으로 활용해 titanic_df의 age컬럼의 데이터들을 일괄적으로 바꿔줄 수 있다. def get_category(age): cat = '' if age 2021. 10. 18.
728x90