Header

  1. View current page

    psyOblade's Note

Profile_img_60x60_01
0

01. 파이썬 시작하기

env variables

PYTHONPATH=모듈경로

 

python script

/usr/bin/env python

 

frequently used commands

dir(command)

help(command)

type(type)

 

copy object (default = copy by reference)

import copy

import sys

dest = copy.copy(src)           # shallow copy

dest = copy.deepcopy(src)   # deep copy

print sys.getrefcount(dest)   # get reference count

 

 

History

Last edited on 04/02/2008 12:07 by psyOblade

Comments (0)

You must log in to leave a comment. Please sign in.