随笔分类 -  python

摘要:输出: 阅读全文
posted @ 2018-11-09 22:45 anobscureretreat 阅读(155) 评论(0) 推荐(0) 编辑
摘要:#create a tuple l = [(1,2), (3,4), (8,9)] print(list(zip(*l))) 阅读全文
posted @ 2018-11-06 09:57 anobscureretreat 阅读(414) 评论(0) 推荐(0) 编辑
摘要:非负整数:^\d+$ 正整数:^[0-9]*[1-9][0-9]*$ 非正整数:^((-\d+)|(0+))$ 负整数:^-[0-9]*[1-9][0-9]*$ 整数:^-?\d+$ 非负浮点数:^\d+(\.\d+)?$ 正浮点数 : ^((0-9)+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1... 阅读全文
posted @ 2018-10-28 00:57 anobscureretreat 阅读(244) 评论(0) 推荐(0) 编辑
摘要:data={"data":[{"end_point": [-2.45, 5.04], "hotelid": "demo_one", "begin_point": [-4.37, 6.36], "name": "a5", "floor": "1"},{"end_point": [-2.45, 5.04], "hotelid": "demo_one", &quo 阅读全文
posted @ 2018-10-26 15:14 anobscureretreat 阅读(5027) 评论(0) 推荐(0) 编辑
摘要:import json test_dict = {'bigberg':7600,'iPhone':6300,'Bike':800,'shirt':300} print(test_dict) print(type(test_dict))#字典 #dumps 将数据转换成字符串 json_str = json.dumps(test_dict) print(json_str) print(... 阅读全文
posted @ 2018-10-25 00:48 anobscureretreat 阅读(208) 评论(0) 推荐(0) 编辑
摘要:with open(mpath, "w") as f: yaml.safe_dump(yaml_dict,f,encoding='utf-8', allow_unicode=True) 阅读全文
posted @ 2018-10-24 20:10 anobscureretreat 阅读(1065) 评论(0) 推荐(0) 编辑
摘要:with open(mpath,"w") as k: dlist=[] for key in yaml_dict["data"]: dlist.append(yaml_dict["data"][key]) print(dlist) yaml_dict["data"]... 阅读全文
posted @ 2018-10-24 20:09 anobscureretreat 阅读(158) 评论(0) 推荐(0) 编辑
摘要:pip install PyDispatcher 阅读全文
posted @ 2018-10-24 01:36 anobscureretreat 阅读(639) 评论(0) 推荐(0) 编辑
摘要:pip install PyVRML97 阅读全文
posted @ 2018-10-24 01:35 anobscureretreat 阅读(284) 评论(0) 推荐(0) 编辑
摘要:安装环境:win10 64位操作系统,python3.7 一.安装py库 需要用pip 安装 可能会报错, 是因为没有安装对应的c++库 打开网站https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyopengl 找到pyopengl 下载对应的版本,我的是py 阅读全文
posted @ 2018-10-24 01:25 anobscureretreat 阅读(2530) 评论(0) 推荐(0) 编辑
摘要:from collections import defaultdict d=defaultdict(set) s=[("001","A"),("001","C"),("002","B")] for k,v in s: d[k].add(v) print(sorted(d.items())) 阅读全文
posted @ 2018-10-17 10:13 anobscureretreat 阅读(958) 评论(0) 推荐(0) 编辑
摘要:def binary_search(lis, key): low = 0 high = len(lis) - 1 time = 0 while low lis[mid]: low = mid + 1 else: # 打印折半的次数 print("times: %s" % ... 阅读全文
posted @ 2018-10-17 00:50 anobscureretreat 阅读(202) 评论(0) 推荐(0) 编辑
摘要:如果查找到123就会打印出123 的位置索引,否则显示false 阅读全文
posted @ 2018-10-17 00:43 anobscureretreat 阅读(854) 评论(0) 推荐(0) 编辑
摘要:pip install pyqt5 阅读全文
posted @ 2018-10-14 15:50 anobscureretreat 阅读(590) 评论(0) 推荐(0) 编辑
摘要:对字符串“2kd4-1124*2|^2sdAmZ%fkMcv”排序,并返回符合要求格式的元组数据。 排序规则:按照ASCII码由大到小排序; 返回数据格式:((最大字符,最小字符),(次大字符,次小字符),,,) 阅读全文
posted @ 2018-10-14 15:40 anobscureretreat 阅读(189) 评论(0) 推荐(0) 编辑
摘要:#输入内容 按照前几行格式,输入目标主机IP以及hostname source ~/.bashrc 阅读全文
posted @ 2018-10-09 13:33 anobscureretreat 阅读(3049) 评论(0) 推荐(0) 编辑
摘要:输出: 阅读全文
posted @ 2018-09-29 16:29 anobscureretreat 阅读(602) 评论(0) 推荐(0) 编辑
摘要:输出: 其中输出每列的具体解释如下: ●ncalls:表示函数调用的次数; ●tottime:表示指定函数的总的运行时间,除掉函数中调用子函数的运行时间; ●percall:(第一个 percall)等于 tottime/ncalls; ●cumtime:表示该函数及其所有子函数的调用运行的时间,即 阅读全文
posted @ 2018-09-29 16:18 anobscureretreat 阅读(204) 评论(0) 推荐(0) 编辑
摘要:输出: 阅读全文
posted @ 2018-09-29 14:49 anobscureretreat 阅读(548) 评论(0) 推荐(0) 编辑
摘要:locale 模块提供了 C 本地化( localization )函数的接口, 如 Example 8-1 所示. 同时提供相关函数, 实现基于当前 locale 设置的数字, 字符串转换. (而 int , float , 以及 string 模块中的相关转换函数不受 locale 设置的影 响 阅读全文
posted @ 2018-09-29 14:47 anobscureretreat 阅读(1300) 评论(0) 推荐(0) 编辑