일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Chat-GPT
- 파이썬
- Selenium
- NLP
- Merge Repositories
- 인스타그램
- 해시태그
- 크롤링
- clustering
- 괄호 문제
- geopandas
- python buildpacks
- 웹페이지
- 2164 카드2
- 코랩 런타임
- 알고리즘
- convert to shp
- 플라스크
- string to list
- to shp
- colab runtime
- Crawling
- kmeans
- 혁신성장부문
- geoDataFrame
- plotly dash
- 백준
- 셀레니움
- flask
- Python
- Today
- Total
목록전체 글 (76)
코딩코딩코딩
import warnings warnings.filterwarnings(actions='ignore')
import seaborn as sns import matplotlib.pyplot as plt from matplotlib import rc rc('font', family='AppleGothic') plt.rcParams['axes.unicode_minus'] = False
x = 2021.09.11 00:02 y = 2021.09.11 00:00 type(x) >>> str datetime 형식으로 되어있지만 문자열인 경우 from datetime import datetime converted_x = datetime.strptime(x, "%Y.%m.%d %H:%M") converted_y = datetime.strptime(y, "%Y.%m.%d %H:%M") converted_x >>> 2021-09-11 00:02:00 형태로 변환됨. xy = converted_x - converted_y xy >>> Timedelta('0 days 00:02:00') xy.seconds >>> 120 Timedelta의 seconds를 구한 후에 몫, 나머지 혹은 나누기 연산자를 ..
sys의 readline 메서드를 사용하다보면 개행문자가 끝에 포함되어 있는데 이 문자를 처리하기 위해 strip()을 사용하면 됨 str.strip()은 문자열 양쪽 끝의 특정 문자를 제거해주는 역할을 함 input = sys.stdin.readline() a = list(input) print(f"a-> {a}") b = input.strip() print(f"b-> {b}") c = input.strip('\n') print(f"c-> {c}") >>> >>> XYZ a-> ['X', 'Y', 'Z', '\n'] b-> XYZ c-> XYZ b의 경우처럼 인자가 생략되어 없는 경우 기본문자인 공백을 제거함 c처럼 명시적으로 인자를 표시해줄 수도 있음
스택으로 접근해서 풀이 0인 경우 삭제할 수 있는 데이터가 무조건 존재한다는 가정이 있기 때문에 별도의 조건 필요 없음. import sys iter_num = int(sys.stdin.readline()) budget = [] for i in range(iter_num): x = int(sys.stdin.readline()) if x == 0: budget.pop() else: budget.append(x) print(sum(budget))
보통 python stack을 구현하는 연습을 할 때 대부분 class 를 이용하여 구현하기 때문에 이 문제의 경우 처음에 어떻게 접근해야 하는지 헷갈렸음. * input() 메서드를 사용할 경우 시간초과 되기 때문에 유의 sys.stdin 사용 방법 https://hansuho113.tistory.com/26 참고 import sys stack = [] for i in range(int(sys.stdin.readline())): order = sys.stdin.readline().split() if order[0] == "push": stack.append(order[1]) if order[0] == "pop": if len(stack) == 0: print(-1) else: print(stack.po..