Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

作者:test16134286

python用listoflists表示矩阵的问题?

13 1月01 1月 by test16134286

题主刷leetcode的时候发现的一个小情况>_< 不知道缘由是什么,请各位知友帮忙看看~~python 初始 […]

Continue reading
Posted in 未分类 · Leave a comment

clojure、java、python、ruby的学习曲线陡峭程度有哪些区别?

13 1月01 1月 by test16134286

回复内容: functional-koans/clojure-koans · githubmatyb/java […]

Continue reading
Posted in 未分类 · Leave a comment

python基础教程之字典操作详解

13 1月01 1月 by test16134286

字典dictionary 1.键值对的集合(map) 2.字典是以大括号“{}”包围的数据集合 3.字典是无序 […]

Continue reading
Posted in 未分类 · Leave a comment

python换行符问题:rn还是n?

13 1月01 1月 by test16134286

执行以下python代码:fn = ‘test.txt’file(fn, &#8216 […]

Continue reading
Posted in 未分类 · Leave a comment

python通过websocket与js客户端通信示例分析

12 1月01 1月 by test16134286

具体的 websocket 介绍可见 http://zh.wikipedia.org/wiki/websock […]

Continue reading
Posted in 未分类 · Leave a comment

python3使用tkinter实现ui界面简单实例

11 1月01 1月 by test16134286

代码如下: import timeimport tkinter as tkclass window: def […]

Continue reading
Posted in 未分类 · Leave a comment

python常用的标准库以及第三方库有哪些?

10 1月01 1月 by test16134286

回复内容: 只介绍我用过觉得有强烈推荐欲望的几个=====================标准库* http: […]

Continue reading
Posted in 未分类 · Leave a comment

python判断值是否在list或set中的性能对比分析

10 1月01 1月 by test16134286

本文实例对比分析了python判断值是否在list或set中的执行性能。分享给大家供大家参考,具体如下: 判断 […]

Continue reading
Posted in 未分类 · Leave a comment

有什么有趣的python模块值得推荐?

09 1月01 1月 by test16134286

回复内容: 最近用到过的几个:自动化图表用到 matplotlib: python plotting,粗鄙如我 […]

Continue reading
Posted in 未分类 · Leave a comment

python如何获取javascript动态产生的数据?

08 1月01 1月 by test16134286

我现有有一个工作,需要从新浪新闻网站中获取数据,包括,标题,正文,和参与人数。如图所示想得到 820,但是动态 […]

Continue reading
Posted in 未分类 · Leave a comment

解决python出现

08 1月01 1月 by test16134286

在python项目中运行出现了“attributeerror: resourcemanager instanc […]

Continue reading
Posted in 未分类 · Leave a comment

对于一个开源python量化交易平台项目的建议有哪些?

07 1月01 1月 by test16134286

回复内容: 多谢大家的回答,一些问题的交流就发在我的这个回答里了。 特别感谢何波、董可人、mr mistake […]

Continue reading
Posted in 未分类 · Leave a comment

python中的五种异常处理机制介绍

07 1月01 1月 by test16134286

从几年前开始学习编程直到现在,一直对程序中的异常处理怀有恐惧和排斥心理。之所以这样,是因为不了解。这次攻pyt […]

Continue reading
Posted in 未分类 · Leave a comment

如何快速地注释python代码?

07 1月01 1月 by test16134286

在python的idle里面 在每一行前面加#就可以变成注释不运行 但是句子比较多的时候 一行一行的加好麻烦啊 […]

Continue reading
Posted in 未分类 · Leave a comment

有没有专门关于python在建筑中的应用和教程?

06 1月01 1月 by test16134286

最好有实例回复内容: 谢邀 @hat600,谈谈体会。python最近比较火啊,好像编程入门都不用学c++了大 […]

Continue reading
Posted in 未分类 · Leave a comment

python实例之wxpython中frame使用方法

06 1月01 1月 by test16134286

本节为大家分享的例子是wxpython frame的用法。 例子: 代码如下: #!/usr/bin/pyth […]

Continue reading
Posted in 未分类 · Leave a comment

在python中,为什么pow这样的函数可以直接调用,而floor这样的函数得先导入模块?

06 1月01 1月 by test16134286

python新手,望大神们多指教回复内容: 本来写在 @bhuztez 大大的回答的评论里的。算了还是发到顶层 […]

Continue reading
Posted in 未分类 · Leave a comment

写python代码时怎么快速的给大量代码加上缩进?

06 1月01 1月 by test16134286

已经写了很长的一段代码,突然发现最开始的地方少了个if,之前写的所有代码都要在if之内,原来用c的时候直接加两 […]

Continue reading
Posted in 未分类 · Leave a comment

求一本python3的好书,入门级别或中等级别,求推荐?

06 1月01 1月 by test16134286

读了很多 python 书,注意我要的是 python 3,不是 2。非常棒的推荐,一般的免了。回复内容: 谢 […]

Continue reading
Posted in 未分类 · Leave a comment

python列表去重的二种方法

06 1月01 1月 by test16134286

代码如下: #第一种def delrepeat(liebiao): for x in liebiao: whi […]

Continue reading
Posted in 未分类 · Leave a comment

python字符串连接方法分析

06 1月01 1月 by test16134286

本文实例分析了python字符串连接方法。分享给大家供大家参考,具体如下: python字符串连接有几种方法, […]

Continue reading
Posted in 未分类 · Leave a comment

从零学python系列之数据处理编程实例(一)

06 1月01 1月 by test16134286

要求:分别以james,julie,mikey,sarah四个学生的名字建立文本文件,分别存储各自的成绩,时间 […]

Continue reading
Posted in 未分类 · Leave a comment

如何看待python中加入statictyping?

05 1月01 1月 by test16134286

在twiter上关注蟒爹(guido van rossum)的.蟒爹好像最近一直在搞static typing […]

Continue reading
Posted in 未分类 · Leave a comment

python缩进区别分析

05 1月01 1月 by test16134286

仔细观察下面两个python程序,代码一模一样,但是运行的结果却不同,就是因为最后一行return缩进的不同 […]

Continue reading
Posted in 未分类 · Leave a comment

python中列表推导(listcomprehension)相对于循环有什么优势?性能会更高吗?

05 1月01 1月 by test16134286

python中的列表推导(list comprehension)一般用于从一个列表计算出另一个列表,从功能上看 […]

Continue reading
Posted in 未分类 · Leave a comment

pythonsocket.error:[errno98]addressalreadyinuse的原因和解决

05 1月01 1月 by test16134286

一、原因浅析 今天在写一个python与html5 websocket 实例,么次终止运行重新运行脚本总是提示 […]

Continue reading
Posted in 未分类 · Leave a comment

python基础教程之正则表达式基本语法以及re模块

05 1月01 1月 by test16134286

什么是正则: 正则表达式是可以匹配文本片段的模式。 正则表达式’python’可以匹配 […]

Continue reading
Posted in 未分类 · Leave a comment

分析python服务器拒绝服务攻击代码

04 1月01 1月 by test16134286

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

Continue reading
Posted in 未分类 · Leave a comment

初学python,有哪些pythonic的源码推荐阅读?

04 1月01 1月 by test16134286

初学python,要想让自己的python代码更加pythonic,所以想找一些pythonic的代码来看看!

Continue reading
Posted in 未分类 · Leave a comment

27岁零基础努力自学python,多久或什么程度可以找到工作?

04 1月01 1月 by test16134286

回复内容: @马天翼说得都差不多了。。我就额外补充一个东西吧:http://blog.knownsec.com […]

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笔记 ·