一,调试函数repr 读写文件的时候,你可能会碰到空格导致的问题,这些问题很难解决,因为空格、跳表以及换行,平常就难以用眼睛看出来: >>> s = '1 2\t 3\n 4' >>> print(s) 1 2 3 4 >>> t = 'I like use Python\n and you?' > ...
分类:
编程语言 时间:
2020-07-02 18:22:51
阅读次数:
88
名称: 策略模式(Strategy Pattern) 问题: The intent of the Strategy Pattern is to define a family of algorithms, encapsulate each algorithm, and make them inter ...
分类:
其他好文 时间:
2020-06-28 20:11:35
阅读次数:
55
Game of Life (M) 题目 According to the Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British ...
分类:
其他好文 时间:
2020-06-26 10:53:37
阅读次数:
48
s = 'cdp\nd' result = eval(repr(s).replace('\\', '@')) print(result) repr() 函数可以将字符串转换为python的原始字符串(即忽视各种特殊字符的作用) 然后再使用eval() 函数将原始字符串转换为正常的字符串,不使用eva ...
分类:
编程语言 时间:
2020-06-24 12:06:33
阅读次数:
81
在使用注册中心Zookeeper时注意关闭linux防火墙,windows防火墙。 1.关闭linux防火墙 (1)停止防火墙服务:systemctl stop firewalld.service (2)禁止firewall开机启动:systemctl disable firewalld.servi ...
分类:
其他好文 时间:
2020-06-23 21:02:27
阅读次数:
52
在上一篇中springboot 2.X 集成redis中提到了在spring-boot-starter-data-redis中使用JdkSerializationRedisSerializerl来实现序列化, 这里看下具体是如何实现的。 1.RedisSerializer接口 在spring-dat ...
分类:
编程语言 时间:
2020-06-22 18:38:57
阅读次数:
56
Django rest framework源码分析(3) 节流 添加节流 自定义节流的方法 限制60s内只能访问3次 (1)API文件夹下面新建throttle.py,代码如下: # utils/throttle.py from rest_framework.throttling import Ba ...
分类:
其他好文 时间:
2020-06-21 20:12:57
阅读次数:
44
什么是文本分类 文本分类任务是NLP十分常见的任务大类,他的输入一般是文本信息,输出则是预测得到的分类标签。主要的文本分类任务有主题分类、情感分析 、作品归属、真伪检测等,很多问题其实通过转化后也能用分类的方法去做。 常规步骤 选择一个感兴趣的任务 收集合适的数据集 做好标注 特征选择 选择一个机器 ...
分类:
其他好文 时间:
2020-06-19 20:33:25
阅读次数:
70
示例:unsigneducHigh,ucLow;unsignedshortusValue=ucHigh<<8+ucLow;解析:1、上面的问题在哪呢?是ucHigh值太低,导致移位溢出?2、还是运算符优先级的问题?答案是运算符优先级的问题,那溢出不考虑么?下面就解释为啥不考虑unsignedshortusValue=(ucHigh<<8)+ucLow;"Achar
分类:
编程语言 时间:
2020-06-17 16:56:03
阅读次数:
117
网络应用程序,分为前端和后端两个部分。当前的发展趋势,就是前端设备层出不穷(手机、平板、桌面电脑、其他专用设备…)。因此,必须有一种统一的机制,方便不同的前端设备与后端进行通信。这导致API构架的流行,甚至出现"API First"的设计思想。RESTful API是目前比较成熟的一套互联网应用程序 ...