Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test16134286

中国的python量化交易工具链有哪些?

21 5月01 1月 by test16134286

回复内容: 最近发起了一个开源项目,a股版的pyalgotrade,在原版的基础上,增加了a股的历史行情和实时 […]

Continue reading
Posted in 未分类 · Leave a comment

python使用rabbitmq实现网络爬虫示例

21 5月01 1月 by test16134286

编写tasks.py 代码如下: from celery import celeryfrom tornado. […]

Continue reading
Posted in 未分类 · Leave a comment

值得看的python的开源项目有哪些?

20 5月01 1月 by test16134286

好的开源项目对大家学习会有很大帮助,希望大家推荐下适合python学习的好的开源项目,尽量本身不是太庞大,而且 […]

Continue reading
Posted in 未分类 · Leave a comment

从零学python之入门(四)运算

20 5月01 1月 by test16134286

python的运算符和其他语言类似 (我们暂时只了解这些运算符的基本用法,方便我们展开后面的内容,高级应用暂时 […]

Continue reading
Posted in 未分类 · Leave a comment

学了python之后,再学java是不是会更容易?

20 5月01 1月 by test16134286

回复内容: 学java很容易的感觉是很容易获得的,只要你有c或者c++或者python或者c#的经验,学习ja […]

Continue reading
Posted in 未分类 · Leave a comment

为什么说浮点数缺乏精确性?python中浮点数运算问题

20 5月01 1月 by test16134286

python中如图的运算为什么结果接近零而不为零 是什么原因造成的? 浮点数缺乏精确性应该怎么解释? 为什么前 […]

Continue reading
Posted in 未分类 · Leave a comment

初学python可以阅读哪些代码?读代码时要做些什么工作帮助提高?

19 5月01 1月 by test16134286

没有编程经验,零基础尝试读过django,但是感觉没有上下文读起来很吃力,总是一头雾水,怎样解决?回复内容: […]

Continue reading
Posted in 未分类 · Leave a comment

quant应该学习哪些python知识?

19 5月01 1月 by test16134286

rt

Continue reading
Posted in 未分类 · Leave a comment

自学ruby、python之前必须先学c/c++或java吗?

19 5月01 1月 by test16134286

好像大家对该问题的观点不一样,有人坚信必须先学c或c++ ,而有人觉得可以直接开始ruby/python,请大 […]

Continue reading
Posted in 未分类 · Leave a comment

python使用lxml模块和requests模块抓取html页面的教程

19 5月01 1月 by test16134286

web抓取 web站点使用html描述,这意味着每个web页面是一个结构化的文档。有时从中 获取数据同时保持它 […]

Continue reading
Posted in 未分类 · Leave a comment

python的迭代器与生成器实例详解

18 5月01 1月 by test16134286

本文以实例详解了python的迭代器与生成器,具体如下所示: 1. 迭代器概述: 迭代器是访问集合元素的一种方 […]

Continue reading
Posted in 未分类 · Leave a comment

python发送arp欺骗攻击代码分析

18 5月01 1月 by test16134286

代码如下: # -*- coding: cp936 -*-from scapy.all import *fro […]

Continue reading
Posted in 未分类 · Leave a comment

python的类的下划线命名有什么不同?

18 5月01 1月 by test16134286

1,以一个下划线开头的命名 ,如_getfile2,以两个下划线开头的命名 ,如__filename3,以两个 […]

Continue reading
Posted in 未分类 · Leave a comment

python中的startswith和endswith函数使用实例

18 5月01 1月 by test16134286

在python中有两个函数分别是startswith()函数与endswith()函数,功能都十分相似,sta […]

Continue reading
Posted in 未分类 · Leave a comment

python实现smtp邮件发送功能

18 5月01 1月 by test16134286

一直想着给框架添加邮件发送功能、所以整理下python下邮件发送功能 首先python是支持邮件的发送、内置s […]

Continue reading
Posted in 未分类 · Leave a comment

c++stl中的map用红黑树实现,搜索效率是o(lgn),为什么不像python一样用散列表从而获得常数级搜索效率呢?

17 5月01 1月 by test16134286

回复内容: c++ stl中的标准规定:* map, 有序* unordered_map,无序,这个就是用散列 […]

Continue reading
Posted in 未分类 · Leave a comment

你看好python3吗?

17 5月01 1月 by test16134286

回复内容: 就因为unicode,python3肯定能变成主流 在 3.0 时代我已经开始转向 python […]

Continue reading
Posted in 未分类 · Leave a comment

使用python获取进程pid号的方法

17 5月01 1月 by test16134286

保存为.py文件后 运行脚本在后面添加进程名称即可 比如:python proinfo.py qq 即可获取q […]

Continue reading
Posted in 未分类 · Leave a comment

在简化代码时最有优势的是python吗?

17 5月01 1月 by test16134286

如打印1-100中可被2和3整除的總和最一般的情況可能这样写 thesum=0 for x in xrange […]

Continue reading
Posted in 未分类 · Leave a comment

python使用稀疏矩阵节省内存实例

17 5月01 1月 by test16134286

推荐系统中经常需要处理类似user_id, item_id, rating这样的数据,其实就是数学里面的稀疏矩 […]

Continue reading
Posted in 未分类 · Leave a comment

使用wxpython实现的一个简单图片浏览器实例

16 5月01 1月 by test16134286

上次我爬了n多图片,但是浏览的时候有一个问题。 图片浏览器的浏览一般都是按名称排的,而我对图片的命名是按照数字 […]

Continue reading
Posted in 未分类 · Leave a comment

python读大数据txt

16 5月01 1月 by test16134286

如果直接对大文件对象调用 read() 方法,会导致不可预测的内存占用。好的方法是利用固定长度的缓冲区来不断读 […]

Continue reading
Posted in 未分类 · Leave a comment

python实现class对象转换成json/字典的方法

16 5月01 1月 by test16134286

本文实例讲述了python实现class对象转换成json字典的方法。分享给大家供大家参考,具体如下: # – […]

Continue reading
Posted in 未分类 · Leave a comment

python实现梯度下降代码问题?

16 5月01 1月 by test16134286

回复内容: 1. epsilon = 0.0001在此段代码中的作用是什么?在minimize(jtheta) […]

Continue reading
Posted in 未分类 · Leave a comment

python群发邮件实例代码

15 5月01 1月 by test16134286

直接上代码了 代码如下: import smtplibmsg = mimemultipart() #构造附件1 […]

Continue reading
Posted in 未分类 · Leave a comment

python相似模块用例

15 5月01 1月 by test16134286

一:threading vs thread 众所周知,python是支持多线程的,而且是native的线程,其 […]

Continue reading
Posted in 未分类 · Leave a comment

c语言和python,该从哪个入门编程?

15 5月01 1月 by test16134286

学的文科,进了互联网公司做运营。虽然运营可以不懂技术,但看到同组有人和技术聊起问题头头是道,压力山大= =于是 […]

Continue reading
Posted in 未分类 · Leave a comment

python逐行读取文件内容的三种方法

15 5月01 1月 by test16134286

方法一: 代码如下: f = open(“foo.txt”) # 返回一个文件对象 l […]

Continue reading
Posted in 未分类 · Leave a comment

python字符串格式化输出方法分析

14 5月01 1月 by test16134286

本文实例分析了python字符串格式化输出方法。分享给大家供大家参考,具体如下: 我们格式化构建字符串可以有3 […]

Continue reading
Posted in 未分类 · Leave a comment

python进阶教程之循环相关函数range、enumerate、zip

14 5月01 1月 by test16134286

在“循环”一节,我们已经讨论了python基本的循环语法。这一节,我们将接触更加灵活的循环方式。 range( […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

先前文章
较新文章

近期文章

  • 15款互联网人必备的AI工具,效率提升2倍
  • 多个ChatGPT通用指令
  • Python采集biaozhun政府文件
  • TensorFlow库:Python中的深度学习
  • python 本地密码管理应用

近期评论

  • helenadmin发表在《Python采集biaozhun政府文件》
  • helenadmin发表在《写给程序员的一封公开信》
  • Google发表在《About Me》
  • helenadmin发表在《ES(ElasticSearch)分布式全文搜索引擎及使用方式》
  • buy viagra发表在《About Me》

文章归档

  • 2024年12月
  • 2024年9月
  • 2024年6月
  • 2024年5月
  • 2024年3月
  • 2024年2月
  • 2024年1月
  • 2023年12月
  • 2023年11月
  • 2023年10月
  • 2023年9月
  • 2023年8月
  • 2023年7月
  • 2023年6月
  • 2023年5月
  • 2023年4月
  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年5月
  • 2021年4月
  • 2021年3月
  • 2021年1月
  • 2020年12月
  • 2020年11月
  • 2020年10月
  • 2020年9月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年7月
  • 2019年6月
  • 2019年5月
  • 2019年4月
  • 2019年3月
  • 2019年2月
  • 2019年1月
  • 2018年12月
  • 2018年11月
  • 2018年10月
  • 2018年9月
  • 2018年7月
  • 2018年6月
  • 2018年3月
  • 2018年2月
  • 2018年1月
  • 2017年12月
  • 2017年11月
  • 2017年10月
  • 2017年9月
  • 2017年8月
  • 2017年7月
  • 2017年6月
  • 2017年5月
  • 2017年4月
  • 2017年3月
  • 2017年1月
  • 2016年12月
  • 2016年11月
  • 2016年10月
  • 2016年9月
  • 2016年8月
  • 2016年7月
  • 2016年6月
  • 2016年5月
  • 2016年4月
  • 2016年3月
  • 2016年2月
  • 2015年8月
  • 2015年7月
  • 2015年6月
  • 2015年5月
  • 2014年7月
  • 2014年6月
  • 2014年5月
  • 1970年1月

分类目录

  • Database
  • focus—-实时热搜
  • IC设计
  • js&jquery
  • PHP
  • Python
  • 新技术研习
  • 服务器相关技术
  • 算法
  • 缓存技术
  • 随笔

功能

  • 注册
  • 登录
  • 文章RSS
  • 评论RSS
  • WordPress.org
© 2025 charlie笔记 ·