自学Unity3D比较辛苦和困难,给大家推荐一些Unity3D资源,与君共勉。 Unity3D 3d射击游戏源码 EZFPS Multiplayer FPS Kithttp://www.idoubi.net/unity3d/complete-project/282.htmlUnity3D 暴力之城游 ...
分类:
编程语言 时间:
2019-12-09 15:37:18
阅读次数:
243
想安装tornado框架,但总是有奇怪错误,如下: 如果按照默认的下载源,就会死活不成功,出现 Traceback (most recent call last): File "e:\python38\lib\site-packages\pip\_vendor\urllib3\response.py ...
分类:
编程语言 时间:
2019-12-08 22:46:34
阅读次数:
150
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
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
Template from https://leetcode.com/problems/minimum-window-substring/discuss/26808/Here-is-a-10-line-template-that-can-solve-most-'substring'-problems ...
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文件上传出现如下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
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 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