上一页 1 ··· 112 113 114 115 116 117 118 119 120 ··· 403 下一页
摘要: r选项的作用表示在文件中匹配B, 然后读入a.txt的内容, 添加到B的后面 001、 (base) [root@PC1 test2]# ls a.txt b.txt (base) [root@PC1 test2]# cat a.txt 1 2 3 4 5 (base) [root@PC1 test 阅读全文
posted @ 2023-06-11 00:36 小鲨鱼2018 阅读(138) 评论(0) 推荐(0)
摘要: 001、ctrl + shift + esc 打开任务管理器, 然后1, 2 阅读全文
posted @ 2023-06-10 14:44 小鲨鱼2018 阅读(313) 评论(0) 推荐(0)
摘要: lower只对ASCII起作用。 casefold对更多的语言起作用。 001、 >>> str1 = 'ß' ## 测试字符串 >>> str1 'ß' >>> str1.lower() ## lower 'ß' >>> str1 'ß' >>> str1.casefold() ## casefo 阅读全文
posted @ 2023-06-10 00:36 小鲨鱼2018 阅读(76) 评论(0) 推荐(0)
摘要: capitalize将首个字母转换为大写, 其余单词不处理。 title将所有单词的首字符转换为大写。 001、 >>> str1 = "ab cd ef" ## 测试字符串 >>> str1 'ab cd ef' >>> str1.capitalize() ## capitalize函数 'Ab 阅读全文
posted @ 2023-06-10 00:31 小鲨鱼2018 阅读(121) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test2]# cat a.fa ## 测试fasta文件 >chr1 aattccgggttgggcccyujjjttt ddeeeegghggii >chr2 8883dsfdkkkfftteeessskkk aaadddfffgggcccgggt33 ddggee 阅读全文
posted @ 2023-06-10 00:18 小鲨鱼2018 阅读(25) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test05]# ls a.txt test.py [root@PC1 test05]# cat a.txt ## 测试数据 3333 gene 9999 kkkk gene 7777 8888 gene gene 0000 6666 [root@PC1 test05] 阅读全文
posted @ 2023-06-08 21:17 小鲨鱼2018 阅读(178) 评论(0) 推荐(0)
摘要: 001、 >>> str1 = "ab" ## 测试字符串 >>> str1 'ab' >>> str1.ljust(10) ## 调整宽度为10, 左侧对齐, 默认用空格填充 'ab ' >>> str1.ljust(10, "+") ## 设置用+号填充 'ab++++++++' >>> str 阅读全文
posted @ 2023-06-08 20:52 小鲨鱼2018 阅读(222) 评论(0) 推荐(0)
摘要: 001、 >>> list1 = [111, 222, 333] >>> list1 [111, 222, 333] >>> list1 = [str(i) for i in list1] ## 将列表中数值转换为字符串 >>> list1 ['111', '222', '333'] 阅读全文
posted @ 2023-06-08 20:35 小鲨鱼2018 阅读(42) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test04]# ls a.txt [root@PC1 test04]# cat a.txt ## 测试数据 3333 gene 9999 kkkk gene 7777 8888 gene gene 0000 6666 ## 输出匹配字符及其下一行 [root@PC1 阅读全文
posted @ 2023-06-08 18:28 小鲨鱼2018 阅读(443) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test04]# ls a.txt [root@PC1 test04]# cat a.txt ## 测试数据 3333 gene 9999 kkkk gene 7777 8888 gene 0000 6666 [root@PC1 test04]# sed -n '/ge 阅读全文
posted @ 2023-06-08 18:15 小鲨鱼2018 阅读(386) 评论(0) 推荐(0)
上一页 1 ··· 112 113 114 115 116 117 118 119 120 ··· 403 下一页