python
Edithttp://metaleks.net/programming/the-evolution-of-a-python-programmer[http://metaleks.net/programming/the-evolution-of-a-python-programmer]
입문서
http://learnpythonthehardway.org/book/ href="http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-189-a-gentle-introduction-to-programming-using-python-january-iap-2008/" class="bare">http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-189-a-gentle-introduction-to-programming-using-python-january-iap-2008/]http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program
프레임웍
Learn Django: Create a Wiki in 20 minutes http://showmedo.com/videos/video?name=1100000&fromSeriesID=110
예제
조각 코드 : http://coreapython.hosting.paran.com/howto/sebsauvage_net-%20Snyppets%20-%20Python%20snippets.htm
날짜 변환
파일 읽기
def read(file_name):
file_content = open(file_name)
while 1:
line = file_content.readline()
if not line:
break
print line
file_content.close();
Proxy 서버
http://code.activestate.com/recipes/483732-asynchronous-port-forwarding/ sudo python proxy.py -l 127.0.0.1 -p 80 -r 127.0.0.1 -P 8080