贵有恒,何必三更眠五更起,最无益,只怕一日曝十日寒. 好多东西要写下来一是方便自己,二可以分享给大家,我却一拖再拖. 工作的时候看别人代码中间结果,跳了个坑,关于python generator类型: x=(x for x in range(10)) for i in x: print (i) y=[] for i in x: y.append(i) print ("len(y)=",len(y)) 打印出y的长度竟然是0!纠结了好久,也是服了自己了,一打印指针就指到最后了,y当然长度…
安装Checklist 注意:本文只描述安装过程,由于组件的版本更新很快,为保证文章时效性,不提供下载链接,也尽可能不指明具体版本. 安装Visual Studio 2015进行默认安装,除非已经FQ且网络状况良好,不要安装自带的第三方组件,包括Xamarin和Android SDK. 安装JDK(Java SE Development Kit),可去Oracle官网安装JDK8. 安装Andorid SDK 安装Xamarin for Visual Studio Xamarin开发iOS程序需…
十三. Python基础(13)--生成器进阶 1 ● send()方法 generator.send(value) Resumes the execution, and "sends" a argument which becomes the result of the current yield expression in the generator function. The send() method, like __next__(), returns the next v…
十二. Python基础(12)--生成器 1 ● 可迭代对象(iterable) An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list, str, and tuple) and some non-sequence types like dict and file and objects of any clas…
跳坑小能手 Time Limit: 2000/1000ms (Java/Others) Problem Description: GDUFE-GAME现场有一个游戏场地人头窜动,围观参与游戏的学生在场上跳来跳去.每次游戏一名参与者,且每次游戏结束时场地都会出现随机的变化(游戏过程中场地不会发生变化,只在更换参与者时变化).场地有两种类型:第一种是高台,第二种是深坑.参与者从任意高台出发向前跳,规定每次向前跳的步伐大小相同,但步伐大小由参与者自行决定,必须大于0.只要跳7次不掉入坑中,便能获得奖品…