上一页 1 ··· 342 343 344 345 346 347 348 349 350 ··· 375 下一页
摘要: >>> test1 = ["sss","ccc","aaa","ddd"] >>> test1.reverse() ## 就地反转 >>> test1 ['ddd', 'aaa', 'ccc', 'sss'] >>> test1.reverse() >>> test1 ['sss', 'ccc', 阅读全文
posted @ 2020-12-26 14:18 小鲨鱼2018 阅读(275) 评论(0) 推荐(0) 编辑
摘要: >>> test1 = ["ccc","aaa","aaa","ccc","bbb","aaa","ddd","aaa"] >>> test1.count("aaa") 4 >>> for i in range(test1.count("aaa")-1): test1.remove("aaa") > 阅读全文
posted @ 2020-12-26 14:06 小鲨鱼2018 阅读(958) 评论(0) 推荐(0) 编辑
摘要: 1、求最大值和最小值 >>> test1 = [34,2,5,65,322,21,54] >>> temp = test1[0] >>> for i in test1: if i > temp: temp=i >>> temp 322 >>> for i in test1: if i < temp: 阅读全文
posted @ 2020-12-26 13:52 小鲨鱼2018 阅读(3712) 评论(0) 推荐(0) 编辑
摘要: 1、 + 号拼接 >>> test1 = "abcd" >>> test2 = "opqr" >>> test3 = "xyzh" >>> test1 + test2 'abcdopqr' >>> test2 + test3 'opqrxyzh' >>> test2 + test1 + test3 阅读全文
posted @ 2020-12-26 12:24 小鲨鱼2018 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1、format()位置参数 >>> "abcdabdef".format() 'abcdabdef' >>> "abc{0}dabdef".format("YYYY","MMMM","OOOO") 'abcYYYYdabdef' >>> "abc{1}dabdef".format("YYYY"," 阅读全文
posted @ 2020-12-26 11:57 小鲨鱼2018 阅读(162) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(void) { int num; puts("please input a number:"); printf("num: ");scanf("%d",&num); printf("the last digit of num is: %d\n" 阅读全文
posted @ 2020-12-25 13:59 小鲨鱼2018 阅读(1337) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(void) { printf("hello world!\a\n"); return 0; } 阅读全文
posted @ 2020-12-24 21:42 小鲨鱼2018 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1、以字符串为中心进行补充 >>> test1="ab" >>> len(test1) 2 >>> test1.center(10," ") ' ab ' >>> test2=test1.center(10," ") >>> len(test2) 10 >>> test2=test1.center( 阅读全文
posted @ 2020-12-23 22:17 小鲨鱼2018 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 1、打开vmware,选择创建新的虚拟机 2、选自定义安装,然后点击下一步 3、点下一步 4、选择稍后安装操作系统,点击下一步 5、选windows,选win7,然后点下一步 6、填写虚拟机的名称,自定义 即可,选择安装位置,点击下一步 7、选择BIOS,点击下一步 8、选择处理器的数量以及核心数, 阅读全文
posted @ 2020-12-23 03:38 小鲨鱼2018 阅读(1415) 评论(0) 推荐(0) 编辑
摘要: firewalld拥有命令行界面(CLI)和图形用户界面(GUI) firewalld中有区域的概念,区域就是防火墙配置策略的模板。 firewalld中常用的区域名称及策略规则: 以下实验主要是命令行界面的常用命令 1、常用的参数表格 2、查看firewalld服务当前所使用的区域 [root@P 阅读全文
posted @ 2020-12-22 14:26 小鲨鱼2018 阅读(431) 评论(0) 推荐(0) 编辑
上一页 1 ··· 342 343 344 345 346 347 348 349 350 ··· 375 下一页