본문 바로가기
  • 紹睿: 자유롭고 더불어 사는 가치있는 삶

분류 전체보기193

[스킨만들기] 1) 컨셉을 정해보자 스킨만들기 (1) 컨셉을 정해보자1. 글씨체 https://fonts.google.com/1) Nanum 2) Gothic A1 2. 사용하고 싶은 색 list1) #954F4F / RGB(148, 79, 79)2) #D2B29B / RGB(210,178,155)3) #EAD98B / RGB(246,146,86)4) #888689 / RGB(136,134,137) 3. 전체적인 색 배분 이랑 위치!는 이렇게 만들 예정 2018. 7. 2.
[python] 알아두면 좋은 Standard Library Standard Library https://docs.python.org/3/library 1. 내장 함수 및 내장 상수 2. 내장 타입(Built-in Types) - 데이터 타입 - Exception 3. Text Processing Services - string - ** re - Regular expression - 기타(difflib, unicodedata ...) 4. Numeric 및 mathematical modules - math, cmath, random ... 5. Data Persistence/파일관련 - ** pickel(Python object serialization) - marshal - ** sqlite3 - 파일 포맷 관련: zlib, gzip 등 파일 압축 관련, csv.. 2018. 6. 29.
[python 기초] Exception 처리 Exception exceptional condition: error상황을 맏으면 raise exception 프로그램이 exception을 적절하게 처리하지 못하면 error message(=traceback)와 함께 프로그램을 종료시킨다. - raise(): 의도적으로 exception을 발생시킴 raise Exception # raise Exception # Exception - exception Hierarchy: https://docs.python.org/3/library/exceptions.html#exception-hierarchy - Custom Exception: 개발자가 직접! 예외상황이 되었을때, "이떻게 처리해라!!"라고 지정해 줄수 있다.(후속처리) Exception을 이용하면 방.. 2018. 6. 29.
[python 기초] OOP - class와 Object Object Oriented Programming python에서 class는 data type으로 본다. 1. Class와 Object class - a user-defined prototype for an object - 틀(class) -> 제품 (instance/object) class 특징 1) Encapsulation 불필요한 detail을 감추는 것 2) Polymorphism( =! Compile이 아니라, runtime에 자동적으로 obejct의 type에 따라 자동으로 작업내용이 달라지는 것 3) Inheritance: Class - subclass, Parent-child 2. Class와 Type 1) Class 만들기 - constructor - initializer 2) Attr.. 2018. 6. 29.
[python 기초] python의 file mode 파일 열기 1. File mode 값 설명 'r' 읽기 'w' 쓰기 'a' append 'b' binary(다른 mode에 추가) '+' Read/write(다른 mode에 추가 Binary 모드에서는 MS windows에서의 \n\r을 변환시키는 문제 등을 해결한다. 2. 파일관련 methods - 파일 읽기 및 쓰기 f = open('py_test.txt', 'w') f.write('hello') f.close() f = open('py_test.txt', 'r') print(f.readline()) # Open source software is made better when users can easily contribute code and documentation to fix bugs and add.. 2018. 6. 29.
[하스스톤] 하스스톤의 재미를 찾아서 (2) - 성기사 하스스톤의 재미를 찾아서 (2) 성기사편오우 전설카드!왕자 리암이 나왔다. 예전엔 text 오류(?) 라고해야되나, 비용 1인 주문카드만 된다고 써져있던것이 고쳐졌군요. 근데난 왜 맨날 이런것만 나오나, ㅋㅋㅋㅋㅋㅋㅋ 갈바돈도 그렇고 ㅠ.ㅠ ### 왕자 리암# 직업: 성기사# 대전 방식: 정규# 까마귀의 해## 2x (1) 길 잃은 신병들# 2x (1) 사나운 두더지# 2x (1) 아케루스 정예병# 2x (1) 은빛십자군 종자# 2x (1) 정의로운 수호자# 2x (1) 힘의 축복# 2x (3) 공격대장# 2x (3) 무쇠부리 올빼미# 2x (3) 바위언덕 수호병# 2x (3) 신의 은총# 2x (3) 정체불명의 망치# 2x (3) 활기찬 음유시인# 2x (5) 곰팡이술사# 2x (5) 레벨 업!# 1x.. 2018. 6. 29.