import turtle as tt.setup(800,600,0,0,)t.pensize(2)t.speed(1)t.color("purple")t.shape("turtle")a=input("请输入任意1-10以内的数值:")a=eval(a) #红色部分可以改成a=5for i i ...
分类:
其他好文 时间:
2017-09-22 12:09:05
阅读次数:
223
1.将一个字符串转换为变量名 [javascript] view plain copy print?function string_to_name(string){ let _name = 'var new_name=' + string; eval(_name); return _name; } ...
分类:
编程语言 时间:
2017-09-22 12:05:57
阅读次数:
123
42 Bing Search Engine Hacks November 13, 2010 By Ivan Remember Bing, the search engine Microsoft launched to topple Google? Ok, it didn’t work that wa ...
分类:
其他好文 时间:
2017-09-22 00:50:16
阅读次数:
165
#-*-coding:utf-8-*- #1、字典 dict = {'name': 'Zara', 'age': 7, 'class': 'First'} #字典转为字符串,返回: {'age': 7, 'name': 'Zara', 'class': 'First'} print type(str... ...
分类:
编程语言 时间:
2017-09-21 17:49:41
阅读次数:
111
1.1.1 json数据生成 l 将采用json-lib 工具生成 l 导入jar包:(注意:重复) l api使用: JavaBean 或 Map :JSONObject.fromObject(...).toString(); List 或 Array:JSONArray.fromObject(. ...
分类:
Web程序 时间:
2017-09-21 09:49:51
阅读次数:
347
/* _ ___ _ _ _ __ | | | | | \ | | | | / / | | | | | \ \| | | / / | |__ | | | |\ \ | | \ \ |____/ |___| |_| \ _| |_| \_\ */ ...
分类:
其他好文 时间:
2017-09-20 14:42:30
阅读次数:
116
父级以及同级元素的查找在使用过程中还是蛮频繁的,下面为大家介绍下jQuery是如何实现的,感兴趣的朋友可以参考下 jQuery.parent(expr) 找父亲节点,可以传入expr进行过滤,比如$(“span”).parent()或者$(“span”).parent(“.class”) jQuer ...
分类:
Web程序 时间:
2017-09-20 10:13:14
阅读次数:
206
堆优化的dijkstra。 把一个点拆成k个。 日常空间要开炸一次。。 //Twenty #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #include<cmath> #include<queue> ...
分类:
其他好文 时间:
2017-09-19 19:50:01
阅读次数:
150
javascript 代码规范 代码规范我们应该遵循古老的原则:“能做并不意味着应该做”。 全局命名空间污染 总是将代码包裹在一个立即的函数表达式里面,形成一个独立的模块。 不推荐 推荐 立即执行函数 在立即执行函数里面,如果有用到全局变量应该通过变量传递的方式,让立即执行函数的函数体在调用时,能以 ...
分类:
编程语言 时间:
2017-09-18 22:35:38
阅读次数:
360
https://raw.githubusercontent.com/tensorflow/tensorflow/r1.3/tensorflow/examples/tutorials/word2vec/word2vec_basic.py ...
分类:
其他好文 时间:
2017-09-18 22:25:14
阅读次数:
269