摘要: 参考: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) 编辑
摘要: exercis: Solution: def basic_op(operator, value1, value2): return eval(str(value1) + operator + str(value2))#math模块eval()执行字符串表达式 阅读全文
posted @ 2022-07-02 23:38 大序列 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Exercise: Solution: def sum_array(arr): if arr: #判断序列是否 为 空 :if arr > TRUE 不是空序列 if len(arr) > 2: # 序列是否存在两个以上的 元素 arr.remove(max(arr)) arr.remove(min 阅读全文
posted @ 2022-06-30 21:02 大序列 阅读(34) 评论(0) 推荐(0) 编辑
摘要: Exercise: Solution: def count_by(x, n): return list(range(x, x * n +1, x)) 阅读全文
posted @ 2022-06-30 17:26 大序列 阅读(20) 评论(0) 推荐(0) 编辑
摘要: Exercise: Solution: 1. def reverse words (text) t = text[-1::-1] t2 = t.split(‘ ‘) t2. reverse() t3. join(t2) return t3 2. def reverse words (text): r 阅读全文
posted @ 2022-06-30 15:58 大序列 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Exercise: Solution: 1. def remove_char(s): s1 = list(s)#把字符串 拆分成列表 s1.remove(s1[0])#删除列表第一个元素 s1.pop()#删除列表最后一个元素 #把新生成的列表 s1 生成字符串 s2 = '' for i in s 阅读全文
posted @ 2022-06-29 20:57 大序列 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Exercise: Solution: 1. def rental_car_cost(d): pd = 40 * d if d < 3: return pd elif d < 7: return pd - 20 else: return pd - 50 2. def rental_car_cost( 阅读全文
posted @ 2022-06-29 17:37 大序列 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Codewars exercise: Solution: def feast(beast, dish): return beast.startswith(dish[0]) & beast.endswith(dish[-1]) 阅读全文
posted @ 2022-06-28 21:05 大序列 阅读(13) 评论(0) 推荐(0) 编辑
摘要: exercise: Given a string of digits, you should replace any digit below 5 with '0' and any digit 5 and above with '1'. Return the resulting string. Not 阅读全文
posted @ 2022-06-27 17:39 大序列 阅读(16) 评论(0) 推荐(0) 编辑
摘要: def double_char(s): s2 = '' for i in s: i += i s2 += i return s2 *replace()函数 *tanslate()-str.maketrans(oldstr, newstr, delstr) 阅读全文
posted @ 2022-06-27 15:01 大序列 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1.第一个:upper()函数,将所有字母都转换成大写; 2.第二个:lower()函数,将所有字母都转换成小写; 3.第三个:capitalize()函数,将首字母都转换成大写,其余小写; 4.第四个:title()函数,将每个单词的首字母都转换成大写,其余小写; 阅读全文
posted @ 2022-06-26 18:10 大序列 阅读(1763) 评论(0) 推荐(0) 编辑
摘要: strip() 简介: 移除字符串 首尾 指定字符/片段 语法: str.strip('char') 参数: 'char': 指定的字符或者片段 阅读全文
posted @ 2022-06-26 17:58 大序列 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Write a function to convert a name into initials. This kata strictlytakes two words with one space in between them.The output should be two capital le 阅读全文
posted @ 2022-06-26 16:46 大序列 阅读(24) 评论(0) 推荐(0) 编辑
摘要: title(): Python title() 方法返回"标题化"的字符串,就是说所有单词都是以大写开始 语法: str.title() 返回值: 所有单词都是以大写开始 例: istitle(): 简介: 检测字符串中的 单词 拼写 首字母是否大写 且 其他字母小写 语法: str.istitle 阅读全文
posted @ 2022-06-26 10:54 大序列 阅读(384) 评论(0) 推荐(0) 编辑
摘要: reverse() 简介: >reverse()是python中列表的一个内置方法(在字典,字符串或者元组中,没有这个内置方法) >用于列表中数据的反转 >该方法没有返回值,但会改变itertable对象 语法: itertable.reverse() 例: lst = [1, 2, 3,4, 5, 阅读全文
posted @ 2022-06-25 23:45 大序列 阅读(81) 评论(0) 推荐(0) 编辑
摘要: DNA 到 RNA 的转换 脱氧核糖核酸,DNA是生物系统中主要的信息存储分子。它由四个核酸碱基鸟嘌呤 ('G')、胞嘧啶 ('C')、腺嘌呤 ('A') 和胸腺嘧啶 ('T') 组成。 核糖核酸(RNA)是细胞中的主要信使分子。RNA 与 DNA 的化学结构略有不同,不含胸腺嘧啶。在 RNA 中, 阅读全文
posted @ 2022-06-25 22:56 大序列 阅读(1286) 评论(0) 推荐(0) 编辑
摘要: map() 简介: 根据提供的函数对指定序列做映射。 第一个参数 function 以参数序列中的每一个元素调用 function 函数,返回包含每次 function 函数返回值的新列表。 语法: map(function, itertable) 参数: function: 自定义函数、内置函数 阅读全文
posted @ 2022-06-25 17:59 大序列 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-06-25 17:45 大序列 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Solution : def find_smallest_int(arr): select = min(arr) return select find_smallest_int([78, 56, 232, 12, 11, 43]) find_smallest_int([78, 56, -2, 12, 阅读全文
posted @ 2022-06-25 14:36 大序列 阅读(13) 评论(0) 推荐(0) 编辑