분류 전체보기33 테이블 생성 쿼리 보기 SHOW CREATE TABLE 테이블명 2021. 10. 20. j # coding: utf-8 # 自分の得意な言語で # Let's チャレンジ!! import re input_line = input() page_list = [] query_count = int(input_line) empty = '' for i in range(0,query_count): input_ = input() if re.match("^go to",input_) : page = re.match("(?:go to )(.{0,})$",input_)[1] empty = page page_list.append(page) else: page_list.pop() print(page_list[len(page_list) - 1]) # coding: utf-8 # 自分の得意な言語で # Let's チャレンジ!! .. 2021. 10. 15. [GIT] 커밋메세지 앞에 브런치명 붙이기 1. 커밋메세지 앞에 브런치명을 붙이고 싶은 리포지토리로 이동 2. .git/hooks/commit-msg.sample 파일을 ㅊ 파일로 수정 3. commit-msg 파일을 열고 밑에 내용을 복사 붙여넣기 한다 #!/bin/sh Branch="$(git branch | grep "*" | awk '{print $2}')" current_branch="$(echo $Branch | sed -e "s/^\(.*\)-[0-9]\+$/\1/g")" mv $1 $1.tmpbycommit-msg echo -n "[$current_branch] " > $1 cat $1.tmpbycommit-msg >> $1 2021. 10. 8. [python] dict 를 list로 변환시키기 value_list = list(dict_data.values()) 2021. 10. 8. 이전 1 2 3 4 ··· 9 다음