随笔分类 -  Python学习

摘要:python可以利用SO的方式去调用C++中的函数,但是需要一种调试方案来进行python和C++的联合调试,效果是直接在c++代码中打断点,然后python在进行c++so调用的时候,直接进入到断点处: testlib.cpp #include ... 阅读全文
posted @ 2018-07-09 09:50 justinzhang 阅读(2896) 评论(0) 推荐(0) 编辑
摘要:sudo apt-get install python-mysqldb #!/usr/bin/python #-*-coding:utf-8-*- ''' This file include all the common routine,that are needed in the crawler project. Author: Justnzhang @(uestczhangchao@qq.... 阅读全文
posted @ 2015-05-06 13:57 justinzhang 阅读(1394) 评论(0) 推荐(0) 编辑
摘要:今天用Python提取了Linux内核源代码的目录树结构,没有怎么写过脚本程序,我居然折腾了2个小时,先是如何枚举出给定目录下的所有文件和文件夹,os.walk可以实现列举,但是os.walk是只给出目录名和文件名,而没有绝对路径。使用os.path.listdir可以达到这个目的,然后是创建目录,由于当目录存在是会提示创建失败的错误,所以我先想删除所有目录,然后再创建,但是发现还是有问题,最好还是使用判断如果不存在才创建目录,存在时就不创建,贴下代码: 1 # @This script can be used to iterate the given directory,and create 阅读全文
posted @ 2011-07-25 23:03 justinzhang 阅读(1325) 评论(1) 推荐(0) 编辑