课堂练习: 将文字对应的索引打印出来 test = input(">>>>>") for item in range(len(test)): print(item) ...
分类:
编程语言 时间:
2020-09-18 01:30:41
阅读次数:
38
def num(): for i in range(1,4): print(i,"发送出去") a = yield i print(a,"接受外部参数") i = num() nu = i.__next__() print(nu,"接收迭代参数") while True: try: print(nu ...
分类:
编程语言 时间:
2020-09-18 00:53:08
阅读次数:
38
方法一:BFS模板的应用。 总结的DFS、BFS模板参考:https://www.cnblogs.com/panweiwei/p/13065661.html class Solution(object): # BFS def kthLargest(self, root, k): """ :type ...
分类:
其他好文 时间:
2020-09-18 00:03:27
阅读次数:
35
和三个柱子的最初的汉诺塔很类似,只是多了一个柱子,相当于缓存区大了一些,处理的速度自然快了一些。 粗略的C代码(并没有使先移动到第四根柱子上面的圆盘的数量是最优): #include <stdio.h> int count = 0; void hanoi (char s, char t1, char ...
分类:
其他好文 时间:
2020-09-17 20:42:51
阅读次数:
51
目前,车联网经历着前所未有的快速发展,数据量呈现爆发式增长,合理选择数据传输方式和有效评估数据传输性能成为了研究的热点。专用短程通信技术(Dedicated Short-Range Communications,DSRC)作为车联网中的无线通信技术,提供了车与车(Vehicle-to-vehicle ...
分类:
其他好文 时间:
2020-09-17 19:37:54
阅读次数:
26
''' 斗地主:v1.0 ''' import random def creat_poker(): # 扑克9种:2-10 poker_num = [str(i) for i in range(2, 11)] # 剩下的4种 poker_str = ['A', 'J', 'Q', 'K'] # 2个 ...
分类:
编程语言 时间:
2020-09-17 17:07:42
阅读次数:
27
#重复列表按重复次数排序方法1s = 'aacbddbcdadb'lists1=list(s)uniques1 = set(lists1)dict_str = {}for unique1 in uniques1: i=0 for list1 in lists1: if list1 == unique ...
分类:
编程语言 时间:
2020-09-17 16:44:45
阅读次数:
37
1、指定单元格在工作表位置 下例:指定A10单元格位于左上角 Sub 指定单元格至左上角() ActiveWindow.ScrollColumn = Range("a10").Column ActiveWindow.ScrollRow = Range("a10").Row End Sub ...
分类:
编程语言 时间:
2020-09-17 16:39:06
阅读次数:
34
#方案一:# result=0# #列# for i in range(1,10):# #行# for j in range(1,i+1):# result=i*j# print('%d*%d=%d'%(i,j,result),end=' ')# print()#方案二:通过【for..in..】方 ...
分类:
编程语言 时间:
2020-09-17 16:38:32
阅读次数:
26
importrandomnumArray=[]numStr=[]unite=[‘‘,‘十‘,‘百‘,‘千‘,‘万‘,‘十‘,‘百‘,‘千‘,‘亿‘,‘十‘]jici=1foriteminrange(0,10):numArray.append
分类:
其他好文 时间:
2020-09-17 16:30:32
阅读次数:
17