일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- GIT
- c#
- Github
- hive
- Mac
- Apache
- 파이썬
- PySpark
- numpy
- Python
- string
- Redshift
- matplotlib
- Google Spreadsheet
- PostgreSQL
- Kotlin
- Excel
- dataframe
- django
- Tkinter
- gas
- array
- Google Excel
- google apps script
- Java
- PANDAS
- SQL
- list
- math
- Today
- Total
목록파이썬 (31)
달나라 노트
range() range()는 주로 for loop와 함께 쓰이는 함수입니다.어떠한 기능을 가지는지 한번 봅시다. x = list(range(5)) print(x) print(type(x)) - Output [0, 1, 2, 3, 4] range 함수는 인자로서 숫자를 받습니다.위 예시에선 range 함수의 인자로 5라는 숫자가 주어졌습니다. 5라는 숫자를 받은 range함수는 0부터 시작하여 4(=5-1)까지 1씩 증가하는 숫자들을 인자로서 가지게되는 list를 만들어낸다고 생각하면 됩니다. for i in range(5): print(i) - Output 0 1 2 3 4 range는 어떤 숫자를 받아 list를 생성하기 때문에 위 예시처럼 for loop와 함께 사용할 수 있는 것이죠. x = li..
enumerate() list_1 = ['a', 'b', 'c'] for i in list_1: print(i) - Output a b c 위처럼 list는 반복문을 통해서 각각의 요소들에 접근할 수 있습니다. 그러면 만약에 위 반복문에서 요소의 값들(a, b, c) 뿐 아니라 각각의 값들에 대한 index도 받아내고싶으면 어떻게해야할까요? 이를 위해선 여러 가지 방법이 있겠지만 이번에는 enumerate()을 이용해보겠습니다. list_1 = ['a', 'b', 'c'] for i in enumerate(list_1): print(i) print(type(i)) - Output (0, 'a') (1, 'b') (2, 'c') list를 enumerate로 감싼 후 반복문을 실행하면, enumerate는..
class 상속과 super() Python의 class를 다룰 때 자주 언급되는 내용이 상속이라는 것인데, 과연 상속이 뭔지에 대해 한번 간단하게 알아봅시다. 먼저 class를 하나 생성해봅시다. class Parent(): def father(self): print('This is father method.') def mother(self): print('This is mother method.') parent = Parent() parent.father() parent.mother() - Output This is father method. This is mother method. Parent라는 이름의 class를 선언했고 그 class 안에는 fahter와 mother라는 함수가 존재합니다. 그..
os.makedirs os.makedirs은 디렉토리를 만들어주는 기능을 제공합니다. 아래와 같은 디렉토리 구조가 있다고 가정해봅시다. --- dir |--- test.py |--- test_2 |--- test.xlsx 현재 코드는 test.py에 적히고 있습니다. 만약 test.py와 동일한 디렉토리에 testing이라는 디렉토리를 새로 생성하고싶다면 아래처럼 하면 됩니다. import os os.makedirs(name='testing/', exist_ok=True) - Output --- dir |--- test.py |--- teseting |--- test_2 |--- test.xlsx 그러면 testing이라는 디렉토리가 생성된 것을 볼 수 있습니다. 위 예시에서 exist_ok=True라는..