Skip to content

Instantly share code, notes, and snippets.

View rightx2's full-sized avatar

JeongWoo Choi rightx2

  • Seoul
View GitHub Profile
# .
# .
# ├── myapp
# │ ├── __init__.py
# │ ├── admin.py
# │ ├── migrations
# │ ├── models.py
# │ ├── tasks
# │ │ ├── __init__.py ## ==> code
# │ │ └── my_task.py ## ==> code
@rightx2
rightx2 / pre_import.py
Created July 12, 2020 10:05
수업 진행 시, 가장 먼저 실행해야 하는 코드
import numpy as np
import pandas as pd
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
pd.set_option('display.float_format', lambda x: '%.3f' % x)
pd.set_option('max_columns', None)