일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- array
- hive
- PANDAS
- c#
- PySpark
- Excel
- math
- numpy
- Redshift
- dataframe
- SQL
- GIT
- matplotlib
- string
- Github
- Python
- django
- Google Excel
- Apache
- PostgreSQL
- Google Spreadsheet
- 파이썬
- Tkinter
- Kotlin
- gas
- Java
- Mac
- google apps script
- list
- Today
- Total
목록Python (384)
달나라 노트
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라는..
os.remove os.remove는 어떤 경로의 파일을 삭제해주는 기능을 제공합니다.os.rmdir은 어떤 경로의 디렉토리를 삭제해주는 기능을 제공합니다. 아래와 같은 디렉토리 구조가 있다고 가정해봅시다.예시 코드는 test.py에 적히고 있습니다. --- dir |--- test.py |--- test_memo.txt |--- test_1 |--- test_2 |--- test_3 |--- test.xlsx 만약 test.py에 코드를 적어서 test_memo.txt를 삭제하고 싶다면 아래처럼 적으면 됩니다. import os os.remove('test_memo.txt') 만약 test_2 디렉토리 안의 test.xlsx를 제거하고싶으면 아래처럼 적으면 됩니다. import os os.remove(..
sys.exit() sys.exit()은 Python 코드를 즉시 중단시키는 역할을 합니다. 아래 예시를 보면 1, 2를 print한 후 sys.exit()을 만나 코드가 중단되므로 3은 print되지 않습니다. import sys print(1) print(2) sys.exit() print(3) - Output 1 2 반복문 속에서 sys.exit()을 만나면 바로 중단되고 그 후의 반복문이나 그 후의 코드블록들은 실행되지 않습니다.아래 예시에서도 1과 2만 print되고 3부터는 조건에 걸려 인쇄되지 않은 것을 알 수 있습니다. import sys print(1) print(2) sys.exit() print(3) for i in range(5): if i == 3: sys.exit() else: ..