1226 TIL

looggi·2022년 12월 26일
2

스파르타 내배캠 AI-3

목록 보기
105/130
post-thumbnail

LOAD DATA

UTF-8로 세팅해서 로드데이터 하는 방법(한글을 위해!)
python load data character set

>>> json_string = json.dumps("ברי צקלה", ensure_ascii=False).encode('utf8')
>>> json_string
b'"\xd7\x91\xd7\xa8\xd7\x99 \xd7\xa6\xd7\xa7\xd7\x9c\xd7\x94"'
>>> print(json_string.decode())
"ברי צקלה"

git

git reset HEAD^
git reset --mixed HEAD^
git reset --mixed {commit_id}

모두 동일함

js

append(): 끝부분에 삽입
prepend(): 시작 부분에 삽입

profile
looooggi

0개의 댓글