今日内容 一、函数三元运算符 二、函数递归 三、匿名函数 四、内置函数 行程一:三元运算 )三元运算符|三目运算符 2.字典转成列变原来是在字典转成列表的情况在强转tuple 二,递归函数 案列二: 三、匿名函数: 匿名函数定义: 四、函数内置 官方网站:https://docs.python.or ...
分类:
编程语言 时间:
2019-04-05 18:19:25
阅读次数:
164
object有如下子类: CLASSES object basestring str unicode buffer bytearray classmethod complex dict enumerate file float frozenset int bool list long memoryv ...
分类:
其他好文 时间:
2019-04-04 14:35:17
阅读次数:
117
object有如下子类: CLASSES object basestring str unicode buffer bytearray classmethod complex dict enumerate file float frozenset int bool list long memoryv ...
分类:
其他好文 时间:
2019-04-04 14:30:52
阅读次数:
110
object有如下子类: CLASSES object basestring str unicode buffer bytearray classmethod complex dict enumerate file float frozenset int bool list long memoryv ...
分类:
其他好文 时间:
2019-04-04 14:30:38
阅读次数:
150
object有如下子类: CLASSES object basestring str unicode buffer bytearray classmethod complex dict enumerate file float frozenset int bool list long memoryv ...
分类:
其他好文 时间:
2019-04-04 14:24:57
阅读次数:
159
threading模块是python中专门提供用来做多线程的模块。threading中最常用的类是thread。 查看线程数量函数:threading.enumerate() 查看线程当前名字函数:threading.current_thread() 以下看一个简单的多线程程序: ...
分类:
编程语言 时间:
2019-04-01 17:09:31
阅读次数:
153
字典推导式_enumerate: 关于强转 list, set....强转迭代器会掏空迭代器, 然后放入容器内dict强转迭代器, 需要等长二级容器 ...
分类:
编程语言 时间:
2019-03-29 01:02:36
阅读次数:
176
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer ...
分类:
其他好文 时间:
2019-03-27 12:29:56
阅读次数:
157
循环 range实现循环 enumerate 实现循环 zip ...
分类:
编程语言 时间:
2019-03-27 00:18:00
阅读次数:
203
def camel_to_underline(camel_format): ''' 驼峰命名格式转下划线命名格式 ''' return_str = "" for index,char in enumerate(camel_format): if char.isupper() : if index ! ...
分类:
其他好文 时间:
2019-03-22 20:21:10
阅读次数:
218