관리 메뉴

Silver Library (Archived)

Python - List, and further (append, remove...) 본문

Personal DB

Python - List, and further (append, remove...)

Chesed Kim 2021. 2. 23. 13:06
반응형

Summary:

Surely, not only for this purpose but using list with appropriate function and define it correctly, this grants you to design a calculator as well. Even calendar to furthermore.

 

keyword: list, def, append, remove

 

stackoverflow.com/questions/151199/how-to-calculate-number-of-days-between-two-given-dates

 

How to calculate number of days between two given dates?

If I have two dates (ex. '8/18/2008' and '9/26/2008'), what is the best way to get the number of days between these two dates?

stackoverflow.com

 

wikidocs.net/16040

 

위키독스

온라인 책을 제작 공유하는 플랫폼 서비스

wikidocs.net

docs.python.org/3/library/array.html?highlight=append#array.array.append

 

array — Efficient arrays of numeric values — Python 3.9.2 documentation

array — Efficient arrays of numeric values This module defines an object type which can compactly represent an array of basic values: characters, integers, floating point numbers. Arrays are sequence types and behave very much like lists, except that the

docs.python.org

docs.python.org/ko/3/tutorial/errors.html

 

8. 에러와 예외 — Python 3.9.2 문서

8. 에러와 예외 지금까지 에러 메시지가 언급되지는 않았지만, 예제들을 직접 해보았다면 아마도 몇몇 개를 보았을 것입니다. (적어도) 두 가지 구별되는 에러들이 있습니다; 문법 에러 와 예외.

docs.python.org

Then how to debug? (Traceback and its meaning of error code)

python.bakyeono.net/chapter-9-2.html

 

9.2 오류를 고치는 방법 | 연오의 파이썬

파이썬으로 프로그래밍에 처음 입문하시는 분을 위한 책입니다. 프로그래밍 지식을 갖고 계시지 않더라도 누구나 학습하실 수 있습니다.

python.bakyeono.net