프로그램언어/python 썸네일형 리스트형 pysqlite error [ src/connection.h error ] sqlite을 사용하기 위해서는 pysqlite을 사용해야 합니다. ( trac 설치시 ) 그런데 컴파일 도중에 error가 발생하였습니다. In file included from src/module.c:24: src/connection.h:26:40: error: /usr/include/python/Python.h: 그런 파일이나 디렉토리가 없습니다 src/connection.h:27:22: error: pythread.h: 그런 파일이나 디렉토리가 없습니다 src/connection.h:28:26: error: structmember.h: 그런 파일이나 디렉토리가 없습니다 In file included from src/connection.h:30, from src/module.c:24: src/cac.. 더보기 [Python] 폴더에 존재하는 파일 리스트로 저장. 어떠한 자료에 대한 통계를 만들기로 했습니다. 인용) 통계를 내려고 어떠한 폴더에 데이터를 모아놨는데 어떻게 해야되지? 첫 번째로 데이터가 모여 있다는 폴도를 확인합니다. 그러기 위해서는 네이밍 규칙이 있는 통계자료가 있겠죠? 예로 날짜 순이던지 어떠한 규칙에 의해 파일이 생성되었을 거라 판단됩니다. 아닌 경우도 있겠지만, 규칙이 존재한다는 전제를 깔고 시작하겠습니다. 자, 어떻게 처리 해야 될까여? 일단 파일을 읽어 들어야 되지 않을까여? 데이터를 일일이 읽어 들여 사용할 수 있지만, 나중에 규칙을 더 만들 수 있기때문에 일단 파일 이름만 list로 보관하기로 마음을 먹었습니다. ''' Created on 2010. 6. 10. @author: tingcobell ''' #!/usr/bin/env py.. 더보기 [Python] Class 구조 갖추기. 프로그램 언어를 사용해보신 분이라면 대부분이 구현방법에 대해 알고 있을 것이라 믿습니다. 지금 구현하고자 하는 언어의 기본 클래스를 만드리고 쉽게 어떻게 만드는지에 대해서만 설명합니다. ''' Created on 2010. 5. 9. @author: all ''' class FirstClass(object): ''' classdocs ''' def __init__(self, params): ''' Constructor ''' self.data = params def setData(self, value): self.data = value def display(self): print self.data x = FirstClass("King Arthur") y = FirstClass(3.14) #x.setDat.. 더보기 [Python] Modules 사용에 대한 용어 정의 Modules are processed with two new statements and one important built-in function we explore here: import Lets a client fetch a module as a whole from Allows clients to fetch particular names from a module reload Provides a way to reload a module's code without stopping Python Why Use Modules? Let's start with the obvious first question: why should we care about modules? The short answer is that.. 더보기 [Python] Class Operator Overloading Why You Will Care: Operator Overloading Later, we'll see that objects we implement ourselves with classes can pick and choose from these categories arbitrarily. For instance, if you want to provide a new kind of specialized sequence object that is consistent with built-in sequences, code a class that overloads things like indexing, slicing, and concatenation: class MySequence: def __init__(self,.. 더보기 [Python] Why You Will Care: Dictionary Interfaces Why You Will Care: Dictionary Interfaces Besides being a convenient way to store information by key in your programs, some Python extensions also present interfaces that look and work the same as dictionaries. For instance, Python's interface to dbm access-by-key files looks much like a dictionary that must be opened; strings are stored and fetched using key indexes: import anydbm file = anydbm... 더보기 [Python] Built-in Objects Preview * table Builte-in Object Preview 더보기 [Python] Environment Variables Setting * Python을 사용하기 위해서 환경설정을 해야 한다. * 특히 기본적으로 제공하는 라이브러리 이외에 추가적인 라이브러리를 사용할 때 꼭 추가. * table 1.1 Important Enviroment variables. * The Python interpreter recognizes a handful of environment variable settings, but only a few are used often enough to warrant explanation here. These variables are straightforward to use, but here are a few pointers: * the PATH setting lists a set of directoriess that t.. 더보기 이전 1 2 다음