문자열은 "" 로
리스트는 []로
사전은 {}로 나타낸다.

문자열은 * 연산을 오버로딩 하고 있고 + 연산으로 여러가지 문장을 합쳐서 출력할수 있다.
(마이너스와 나누기는 안되는듯)

리스트는 배열과 비슷하게 사용이 가능하고
list[0:0] = [value] 이런식으로 리스트의 특정 위치에 값을 추가 할수 있다.
list[0:1] 하면 0번째 에서 1번째 미만의 값을 출력한다.(머 실질적으로 배열에서 0번째 값을 출력하는 셈이다)
리스트를 선언하려면
var = []
라고 선언하고 추후에 추가해주면된다.

사전도 리스트와 비슷하지만
문자열로 값을 찾아야 하고, 값과 숫자를 묶어서 입력해야 한다.
사전을 선언하려면
var = {}
라고 선언하고 추후에 추가해주면된다.

5.5. Dictionaries

Another useful data type built into Python is the dictionary (see Mapping Types — dict). Dictionaries are sometimes found in other languages as “associative memories” or “associative arrays”. Unlike sequences, which are indexed by a range of numbers, dictionaries are indexed by keys, which can be any immutable type; strings and numbers can always be keys. Tuples can be used as keys if they contain only strings, numbers, or tuples; if a tuple contains any mutable object either directly or indirectly, it cannot be used as a key. You can’t use lists as keys, since lists can be modified in place using index assignments, slice assignments, or methods like append() and extend().


[링크 : http://docs.python.org/tutorial/datastructures.html]

>>> tel = {'jack':4098, 'sape':4139}
>>> tel
{'sape': 4139, 'jack': 4098}
>>> tel['sape']
4139

>>> tel[0]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyError: 0

>>> tel[4139]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyError: 4139

>>> tel[sape]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'sape' is not defined

어떻게 보면 enum 형 같기도 하고.. associative memory 라는데 어디에 쓰는건지 모르겠다. ㅠ.ㅠ
Posted by 구차니
혹시나 해서 exit, bye(무슨 ftp인가 ㅋㅋ) 별걸 다 쳐봤는데 (quit도 아니다!)

>>> exit
Use exit() or Ctrl-D (i.e. EOF) to exit

보다시피 exit()를 입력하거나, ctrl-D를 하면 종료한다.
음.. EOF니까 windows 버전은 ctrl-z 되려나?



2010.02.26 추가
python 2.4의 경우 무조건 Ctrl-D만 적용된다.


2010.03.21 추가
>>> exit
Use exit() or Ctrl-Z plus Return to exit
Windows 용은 Ctrl-Z 이다.
Posted by 구차니
Microsoft/Windows2010. 1. 22. 11:22
앗 스샷누락.. OTL

아무튼 IE8 구동하면 창뜨자마다 웹페이지 불러오지도 못하고 죽는데
oldaut32.dll 오류가 발생을 한다.

이경우에는 IE8 기능인


원래대로를 눌러주면 원샷에 해결!
(운이 좋아서 복구 된걸지도?)


조금 다른 내용이지만, MS스러운 원인을 적어 주었다.
원인 : 원인을 알 수 없습니다.
[링크 : http://support.microsoft.com/kb/245188]
Posted by 구차니
솔찍히 이해를 못한 부분인데, 간단한 함수를 만드는 것 같다.
함수 포인터 같기도 한데 LISP에서 따왔다고도 하는데 먼소리인지 안드로메다로.

Python supports the creation of anonymous functions (i.e. functions that are not bound to a name) at runtime, using a construct called "lambda".

>>> def f (x): return x**2
... 
>>> print f(8)
64
>>> 
>>> g = lambda x: x**2
>>> 
>>> print g(8)
64

As you can see, f() and g() do exactly the same and can be used in the same ways. Note that the lambda definition does not include a "return" statement -- it always contains an expression which is returned. Also note that you can put a lambda definition anywhere a function is expected, and you don't have to assign it to a variable at all. 


[링크 : http://www.secnetix.de/olli/Python/lambda_functions.hawk]


4.7.5. Lambda Forms

By popular demand, a few features commonly found in functional programming languages like Lisp have been added to Python. With the lambda keyword, small anonymous functions can be created. Here’s a function that returns the sum of its two arguments: lambda a, b: a+b. Lambda forms can be used wherever function objects are required. They are syntactically restricted to a single expression. Semantically, they are just syntactic sugar for a normal function definition. Like nested function definitions, lambda forms can reference variables from the containing scope:

>>> def make_incrementor(n):
... return lambda x: x + n
...
>>> f = make_incrementor(42)
>>> f(0)
42
>>> f(1)
43

[링크 : http://docs.python.org/tutorial/controlflow.html]

아무튼,
>>> f
<function <lambda> at 0xb754da3c>

위의 예제 실행후 f만 입력하면 위와 같이 fuction <lambda> 라는 말이 나온다.
일종의 간단한 return이 필요없는 함수 - c에서 inline 함수? - 가 되는 것처럼 보인다.
Posted by 구차니
개소리 왈왈2010. 1. 22. 10:18
ice cream 대신
i scream 이라는 걸로 만들수 있는 상품이 있을려나? ㅋㅋ
혹시 알아? mac에서 iscream 이라고 먼가 만들지? ^^;

'개소리 왈왈' 카테고리의 다른 글

오늘도 달댕이  (12) 2010.01.28
오늘하루 - 20100125  (0) 2010.01.25
오늘도..  (0) 2010.01.22
핸드폰 위성추적 해준다고?  (5) 2010.01.20
토요일에 눈을 붙였다 눈을 떼보니..  (0) 2010.01.18
Posted by 구차니
개소리 왈왈2010. 1. 22. 00:05
오늘따라 문득 날으는 병아리 얄리가 그립고 달팽이가 그립다.







현재가 행복하지 않은 사람은 과거를 회상한다고 하지만,
문득 하드 한구석에 쳐박혀 있던 추억을 뒤적이다가
지금의 추억의 과거를 보게 되었다.


정말 사랑했구나..


그래도 난 아직 사랑을 모르겠다.
내가 너무 이기적이기 때문이겠지..

'개소리 왈왈' 카테고리의 다른 글

오늘하루 - 20100125  (0) 2010.01.25
아이스크림  (0) 2010.01.22
핸드폰 위성추적 해준다고?  (5) 2010.01.20
토요일에 눈을 붙였다 눈을 떼보니..  (0) 2010.01.18
패딩 + 스키니 + 어그부츠 = ?  (4) 2010.01.16
Posted by 구차니
파이썬은 "(쌍따옴표) 나 '(홀따옴표) 로 문자열을 변수에 저장한다.
특이하게도 """(쌍따옴표 3개) 라는 녀석이 있는데, 굳이 비유를 하자면 HTML의 <pre> 태그와 비슷한 느낌이다.

아래의 예를 보면, " 로 한녀석은 엔터치면 에러가 발생하는데 비해
>>> hello = "test
  File "<stdin>", line 1
    hello = "test
                ^
SyntaxError: EOL while scanning string literal

"""(쌍따옴표 3개)를 사용한 녀석은 아래와 같이 """ 가 나올때 까지 계속 입력을 받고, 자동으로 \n를 붙여준다.
>>> hello = """test
... asdf
... """

>>> hello
'test\nasdf\n'

>>> print hello
test
asdf

>>>

테스트 삼아 "와 '를 혼용해서 하는데 "와 "를 동시에 쓰면 문법에러가 발생한다.
이런 경우에는 \" 를 이용하여 구분을 해주어야 한다.
>>> ""test" ing"
  File "<stdin>", line 1
    ""test" ing"
         ^
SyntaxError: invalid syntax

>>> '"test" ing'
'"test" ing'

>>> "'test' ing"
"'test' ing"

Posted by 구차니
회사일/enigma2010. 1. 21. 16:24
위키에서 낙시질을 하다니 ㄱ-

Download
You can get the newest version by using CVS:
cvs -d :pserver:anonymous@dreamboxupdate.com:/cvs co enigma2

[링크 : http://dream.reichholf.net/wiki/Enigma2]

timeout 뜨면서 안된다. 미네랄!

git clone git://git.opendreambox.org/git/enigma2.git

얄리얄리 얄라성 얄라리 얄라~


Enigma / Enigma2는 오픈소스로 진행되는 위성셋탑박스 프로젝트이다.
가장 유명한 제품이 Dreambox 이며(아마도?)
Enigma는 C/C++ 기반으로 (되어있다고 하며)
Enigma2는 Python 기반으로 되어있다.

일반적으로 Enigma 박스는 IBM PowerPC(MIPS) 계열 CPU를 사용한다.
[링크 : http://dream.reichholf.net/wiki/Enigma2]
Posted by 구차니
클래스 내부에 __init__ 메소드와 __del__ 메소드는
객체에서 말하는 constructor와 descructor를 의미한다(고 한다.)

파이썬은 객체지향도 지원해서 연산자 오버로딩도 지원하나보다.
__add__ __cmp__ 메소드를 통해 덧셈과 비교를 오버로딩한다.

[링크 : http://blog.naver.com/mindweaver/40001747916]

상속은
class DerivedClassName(BaseClassName):
class DerivedClassName(Base1, Base2, Base3):
이런식으로 상속/다중상속을 지원한다.

[링크 : http://docs.python.org/tutorial/classes.html]
Posted by 구차니
파이썬은 typeless 라고 해야 하나.. 만능형이라고 해야하나.
아무튼 전형적인 인터프리트 언어답게 변수를 알아서 인식한다.
하지만 여전히 적응이 안되는건.. 변수 선언방식.

C언어에서는 절대 용납되지 않을 문법이니까.. 익숙해져 보자.

>>> a,b = 0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'int' object is not iterable

>>> a,b = 0,1
>>> a
0
>>> b
1

예를 들어 int형이라면
c에서는 int a = 0, b = 1; 이라고 선언해야 하지만
파이썬에서는 a,b = 0, 1 이라고 선언한다.
변수 선언과 값 할당을 확실하게 좌/우 변으로 나누어진다.

그렇다고 해서 a = 0, b = 1 이렇게는 선언할수 없다. 흐음.. 모호한 느낌
Posted by 구차니