摘要: Exercise: 单词首字母大写(刷题遇到title()失效) solution: def case(string): return ' '.join(word.capitalize() for word in string.split()) #先用split()函数 切片 字符串 #再capit 阅读全文
posted @ 2022-07-03 20:54 大序列 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 参考:Python - ^ 在正则表达式中的作用 ^在正则表达式中有两个作用,一是表达以什么开头,二是表达对什么取反。有时候经常傻傻的分不清楚,接下来给大家详细介绍该怎么用这个^准备一个python文件test.py,借用re.search函数举例说明 # coding=utf-8 import r 阅读全文
posted @ 2022-07-03 16:43 大序列 阅读(1563) 评论(0) 推荐(0) 编辑
摘要: exercise: Your task is to create the functionisDivideBy (or is_divide_by) to check if an integer number is divisible by both integers a and b. A few c 阅读全文
posted @ 2022-07-03 12:20 大序列 阅读(10) 评论(0) 推荐(0) 编辑