pycod
很多人在说我们讲故事吹NB 但是我们吹过的NB ,正在一一变为现实 !!!!!
上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 80 下一页
摘要: >>> dic1{'chi': 1, 'math': 2, 'eng': 3, 'phi': 8}>>> d2 = dic1>>> d2{'chi': 1, 'math': 2, 'eng': 3, 'phi': 8}d2['linux'] = 111>>> d2{'chi': 1, 'math': 阅读全文
posted @ 2019-07-28 19:29 pycod 阅读(141) 评论(0) 推荐(0) 编辑
摘要: http://www.dekiru.cn/?p=1491 Geany 不好用,建议用一些好用的编辑器或ide Subliem Text 或 VS code Pycharm等。 设置运行环境 菜单栏–生成–设置生成命令–执行命令(execute)那里输入python3 %f 以后直接按F5键即可运行p 阅读全文
posted @ 2019-07-28 18:57 pycod 阅读(889) 评论(0) 推荐(0) 编辑
摘要: 列表 增append insert extend 迭代增加删 remove delete pop clear改 li【索引】=“被修改的内容”;切片“” 列表 查 for i in rangein 元组 :制度列表 元组 只能查询 列表的元素可以改 sort 排序 阅读全文
posted @ 2019-07-28 13:35 pycod 阅读(595) 评论(0) 推荐(0) 编辑
摘要: 当地市场上看看有卖芦荟的,买一块回家,掰一小块,擦上就顶事。个人感觉还不错。 芦荟胶、芦荟凝胶一类。绿绿的,很多牌子都有。 都会脱一层皮。没法。 【转载】千万别被晒伤,血的教训啊June 26, 2011 by fay 半夜两三点钟,起床上网google晒晒伤后补救的良方。不是我爱美,而是我痛得受不 阅读全文
posted @ 2019-07-28 13:19 pycod 阅读(387) 评论(0) 推荐(0) 编辑
摘要: >>> tup1 = (1,2,3)>>> tup2 = tup1*2>>> tup2(1, 2, 3, 1, 2, 3)>>> tup3 = tup1 + tup2>>> del tup1>>> tup1Traceback (most recent call last): File "<pyshe 阅读全文
posted @ 2019-07-27 21:49 pycod 阅读(124) 评论(0) 推荐(0) 编辑
摘要: tuple支持 空 元组 不加逗号 >>> tup4 = () tuple非空的元组必须加上逗号>>> tup4 = (55,)>>> tup4(55,)>>> >>> tup3 = (1,2,3,4,5) >>> tup3 (1, 2, 3, 4, 5) >>> >>> #### 切片 索引 都是 阅读全文
posted @ 2019-07-19 08:08 pycod 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1.在H桌面V7B04上运行stressapptest工具编译报错。请研发协助! 2.因为stressapptest工具在兆芯和龙芯都能正常运行,所以我怀疑是工具stressapptest未在H桌面V7B04编译。所以我上网下载了stressapptest的源码。在H桌面V7B04上手动编译,也报错 阅读全文
posted @ 2019-07-16 13:33 pycod 阅读(1619) 评论(0) 推荐(0) 编辑
摘要: Linux Centos7设置UTF-8编码,防止中文乱码 # localeLANG=zh_CN.gb2312LC_CTYPE="zh_CN.gb2312"LC_NUMERIC="zh_CN.gb2312"LC_TIME="zh_CN.gb2312"LC_COLLATE="zh_CN.gb2312" 阅读全文
posted @ 2019-07-16 12:45 pycod 阅读(1025) 评论(0) 推荐(0) 编辑
摘要: >>> a['aaa']>>> b=['aasd','sss','cc']>>> a.extend(b)>>> a['aaa', 'aasd', 'sss', 'cc']>>> a.extend('eee')>>> a['aaa', 'aasd', 'sss', 'cc', ' 阅读全文
posted @ 2019-07-15 23:09 pycod 阅读(78) 评论(0) 推荐(0) 编辑
摘要: https://www.codetd.com/article/1137423 https://www.codetd.com/article/1137423 《版权声明:本文为博主原创文章,未经博主允许不得转载》 本次利用SPECCPU2006测试工具来进行Intel CPU Xeon E7-**** 阅读全文
posted @ 2019-07-14 21:58 pycod 阅读(1133) 评论(0) 推荐(0) 编辑
上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 80 下一页