码迷,mamicode.com
首页 >  
搜索关键字:most    ( 3834个结果
Unity3D游戏完整源码
自学Unity3D比较辛苦和困难,给大家推荐一些Unity3D资源,与君共勉。 Unity3D 3d射击游戏源码 EZFPS Multiplayer FPS Kithttp://www.idoubi.net/unity3d/complete-project/282.htmlUnity3D 暴力之城游 ...
分类:编程语言   时间:2019-12-09 15:37:18    阅读次数:243
Python中安装框架如何换源
想安装tornado框架,但总是有奇怪错误,如下: 如果按照默认的下载源,就会死活不成功,出现 Traceback (most recent call last): File "e:\python38\lib\site-packages\pip\_vendor\urllib3\response.py ...
分类:编程语言   时间:2019-12-08 22:46:34    阅读次数:150
Variables in Go
Introduction Variables is the most common and useful conception in programming language. Variables in Go, of course have something same and different ...
分类:其他好文   时间:2019-12-08 01:17:12    阅读次数:86
声明式编程小练习
# names=['OBOS','age','Alice']# l=[]# for name in names:# name=name.upper()# l.append(name)## print(l) # ['OBOS', 'AGE', 'ALICE']## names=['OBOS','age ...
分类:其他好文   时间:2019-12-06 21:16:11    阅读次数:88
Counter() most_common()
1 不仅可以统计list中元素的出现次数,也可以对str中的元素进行统计 # collections包中的Counter用于统计str list 中元素出现次数 from collections import Counter a = [1,1,2,3,4,5,6,6,6] b = Counter(a ...
分类:其他好文   时间:2019-12-05 12:57:17    阅读次数:571
[Leetcode] Sliding Window Summary
Template from https://leetcode.com/problems/minimum-window-substring/discuss/26808/Here-is-a-10-line-template-that-can-solve-most-'substring'-problems ...
分类:Windows程序   时间:2019-12-05 01:08:33    阅读次数:112
Ethical Hacking - NETWORK PENETRATION TESTING(17)
MITM - bypassing HTTPS Most websites use https in their login pages, this means that these pages are validated using an SSL certificate and there for ...
分类:Web程序   时间:2019-12-03 23:37:54    阅读次数:139
FastDFS--storage文件上传和下载问题
使用FastDFS--storage文件上传出现如下bug: >>> ret = client.upload_by_filename('/home/python/Desktop/1.jpg') Traceback (most recent call last): File "<console>", ...
分类:Web程序   时间:2019-12-03 23:29:42    阅读次数:504
接触python的第2天:了解变量和打印
1变量不用定义类型, 可以直接赋值 2 变量类型可以直接用type显示 3 print 可以打印数值,里面要有‘’ 或 “” 错误示范: >>> print(hello)Traceback (most recent call last): File "<pyshell#11>", line 1, i ...
分类:编程语言   时间:2019-12-03 20:14:32    阅读次数:132
Python 作用域和命名空间
Python Scopes and Namespaces A namespace is a mapping from names to objects. 命名空间是一个从名字到对象的映射(指向,明确的路径)。 Most namespaces are currently implemented as ...
分类:编程语言   时间:2019-12-02 13:29:46    阅读次数:105
3834条   上一页 1 ... 29 30 31 32 33 ... 384 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!