Python(파이썬) - 모듈알아보기 이번 포스팅에서는 모듈에 대해 알아보겠습니다 모듈이란? 프로그램을 구성하는 과정에 일부분의 구성 요소입니다 이전글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 - print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tistory.com/197 Python(파이썬) : 산술 연산자 - http://server-talk.tistory.com/199 Python(파이썬) - if 이해하기 - ht..
Python(파이썬) - list(배열) 알아보기 기존의 변수에 데이터를 담을때 1개의 데이터를 담았습니다 하지만 파이썬에선 list(배열)을 이용하면 1개의 변수에 여러 데이터를 담을수 있습니다 관련글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 - print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tistory.com/197 Python(파이썬) : 산술 연산자 - http://server-talk.tistory.com/1..
Python(파이썬) - 함수 알아보기 이번시간에는 함수에 대해서 알아보겠습니다프로그램을 작성하는데 있어 좋은코드의 원칙은 중복의 제거입니다즉 함수를 이용하게 되면 하나의 코드에서 여러곳에서 사용할수 있게 재활용성이 높아지게됩니다또한 재활용성이 높아지면 코드의 중복, 가독성, 간결화가 되어 효율성이 높아지게 됩니다 관련글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 - print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tist..
Python(파이썬) - for 알아보기 파이썬을 이용한 프로그래밍일 하다 보면 반복해서 수행하는 경우가 있으실 겁니다 이러한 경우에 사용되는 것이 while문과 for문입니다 이번에는 for 문에 대해 알아보겠습니다 관련글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 - print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tistory.com/198 Python(파이썬) : 산술 연산자 - http://server-talk.t..
Python(파이썬) - while 알아보기 파이썬을 이용한 프로그래밍일 하다 보면 반복해서 수행하는 경우가 있으실 겁니다 이러한 경우에 사용되는 것이 while문과 for문입니다 이번에는 먼저 while문에 대해 알아보겠습니다 관련글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 - print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tistory.com/197 Python(파이썬) : 산술 연산자 - http://server-..
Python(파이썬) - elif 알아보기 다양한 조건을 판단하려면 if와 else만으로는 다양한 조건을 판단하기 어렵습니다 하지만 이전시간에 배운 중첩if로 다양한 조건을 판단할수 있지만 파이썬에선 보다 좀더 간결한 코드의 양으로 다양한 조건을 사용할수 있는 조건문이 있는데 그것이 elif 입니다 관련글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 - print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tistory.com/1..
Python(파이썬) - 중첩 if 알아보기 저번시간에는 if ~ else에 알아보았는데요 이번에는 조금더 응용하여 if ~ else를 중첩으로 사용하도록 해보겠습니다 이전글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 - print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tistory.com/197 Python(파이썬) : 산술 연산자 - http://server-talk.tistory.com/199 Python(파이썬) -..
Python(파이썬) - if ~ else 알아보기 이번에는 if ~ else 대해 알아보도록 하겠습니다 이전글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 : print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) : 산술 연산자 - http://server-talk.tistory.com/199 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tistory.com/197 Python(파이썬) : if 이해하기 - http://server-talk.tisto..
Python(파이썬) - 관계 연산자 알아보기 저번시간에는 if문을 하였는데요 처음 프로그래밍을 접하신분은 처음 조건을 표현을 하시려면 많이 답답한 부분도 있으셨을 겁니다 이번에는 다양한 조건을 표현하는 방법을 알아보도록 하겠습니다 관련글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 - print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http://server-talk.tistory.com/197 Python(파이썬) : 산술 연산자 - http://serve..
Python(파이썬) - if 이해하기 대부분의 프로그램은 사용자에게 선택을 요구합니다편집기에서 파일을 저장하는데 버튼을 예로한다면 사용자가 저장하기 버튼을 선택했는지 취소버튼을 하였는지의 서로 다른 동작을 하여야합니다 파이썬에서는 그러한 기능을 하는 것이 if를 이용한 조건문이며, if의 역할은 조건에 맞는 경우에만 실행하도록 만드는것 입니다. 이전글 : Python(파이썬)이란? - http://server-talk.tistory.com/195 Python 화면출력 함수 : print - http://server-talk.tistory.com/196 Python(파이썬) : 주석 - http://server-talk.tistory.com/198 Python(파이썬) - 변수는 무엇인가? - http:..