-
利用列表推导式, 完成以下需求:
a. 生成一个存放1-100中各位数为3的数据列表:
结果为 [3, 13, 23, 33, 43, 53, 63, 73, 83, 93] list1 = [x for x in range(3, 100, 10)] print(list1)
b. 利用列表推到是将 列表中的整数提取出来:
例如:[True, 17, "hello", "bye", 98, 34, 21] --- [17, 98, 34, 21]
list2 = [True, 17, "hello", "bye", 98, 34, 21]
list3 = [x for x in list2 if type(x) == int]
print(list3)
c. 利用列表推导式 存放指定列表中字符串的长度:
例如 ["good", "nice", "see you", "bye"] --- [4, 4, 7, 3]
list4 = ["good", "nice", "see you", "bye"]
list5 = [len(x) for x in list4]
print(list5)
d. dict_list = [{“科目”:“政治”, “成绩”:98}, {“科目”:“语文”, “成绩”:77}, {“科目”:“数学”, “成绩”:99}, {“科目”:“历史”, “成绩”:65}]
去除列表中成绩小于70的字典 【列表推导式完成】
结果为: [{“科目”:“政治”, “成绩”:98}, {“科目”:“语文”, “成绩”:77}, {“科目”:“数学”, “成绩”:99}]
dict_list = [{'科目': '政治', '成绩': 98}, {'科目': '语文', '成绩': 77}, {'科目': '数学', '成绩': 99}, {'科目': '历史', '成绩': 65}]
new_list = [x for x in dict_list if x.get('成绩') >= 70]
print(new_list)
-
编写函数,求1+2+3+…N的和
def sum1(num): """ :param num: 提供一个数字 (参数说明) :return: None """ s = 0 for x in range(1, num+1): s += x print(f'{num}到1相加的和是{s}')
-
编写一个函数,求多个数中的最大值
def max1(*num): """ :param *num: 提供多个数字 (参数说明) :return: None """ print(max(*num)) list6 = [10, 200, 90, 30, 500, 1000] max1(list6)
-
编写一个函数,实现摇骰子的功能,打印N个骰子的点数和
def dice_game(num1:int): sum1 = 0 for _ in range(num1): num = randint(1, 6) print(num, end=',') sum1 += num print(f'点数和:', sum1) dice_game(2)
-
编写一个函数,交换指定字典的key和value。
例如:dict1={'a':1, 'b':2, 'c':3} --> dict1={1:'a', 2:'b', 3:'c'}
dict1 = {'a': 1, 'b': 2, 'c': 3}
def exchange_dict(**num):
new_dict = {num.get(x): x for x in num}
print(new_dict)
exchange_dict(a=1, b=2, c=3)
-
编写一个函数,提取指定字符串中所有的字母,然后拼接在一起产生一个新的字符串
例如: 传入'12a&bc12d-+' --> 'abcd' def extract(str1): """ :param str1: 输入指定的字符串 (参数说明) :return: None """ new_str = '' for x in str1: if 'A' <= x <= 'Z' or 'a' <= x <= 'z': new_str += x print(new_str) extract('12a&bc12d-+')
-
写一个函数,求多个数的平均值
def mean(*num): if len(num) == 0: print('0') else: print(sum(num)/len(num)) mean(4, 6)
-
写一个函数,默认求10的阶乘,也可以求其他数字的阶乘
def factorial(num): s = 1 for x in range(1, num+1): s *= x print(s) factorial(10)
=======注意:以下方法不能使用系统提供的方法和函数,全部自己写逻辑
-
写一个自己的capitalize函数,能够将指定字符串的首字母变成大写字母
例如: 'abc' -> 'Abc' '12asd' --> '12asd' def capitalize(str1:str): if str1: first_chr = str1[0] if 'a' <= str1[0] <= 'z': first_chr = chr(ord(str1[0]) - 32) new_str = first_chr + str1[1:] print(new_str) else: print(str1) capitalize('qwgdqg123') # Qwgdqg123 capitalize('2244') # 2244
-
写一个自己的endswith函数,判断一个字符串是否已指定的字符串结束
例如: 字符串1:'abc231ab' 字符串2:'ab' 函数结果为: True 字符串1:'abc231ab' 字符串2:'ab1' 函数结果为: False def endswith(str2: str, char1: str): new_str2 = list(str2.split(char1)) if new_str2[-1] == '': print(f'函数结果为:{True}') else: print(f'函数结果为:{False}') endswith('123456xy', 'xy') # 函数结果为:True
-
写一个自己的isdigit函数,判断一个字符串是否是纯数字字符串
例如: '1234921' 结果: True
'23函数' 结果: False
'a2390' 结果: False
def isdigit(str3: str):
count = 0
for s in str3:
if '0' <= s <= '9':
count += 1
if count == len(str3):
print(f'结果:{True}')
else:
print(f'结果:{False}')
isdigit('1234921')
isdigit('23函数')
isdigit('a2390')
-
写一个自己的upper函数,将一个字符串中所有的小写字母变成大写字母
例如: 'abH23好rp1' 结果: 'ABH23好RP1' def upper_self(str): new_str = '' for i in str: if 'a' <= i <= 'z': up = chr(ord(i)-32) new_str += up else: new_str += i print(new_str) upper_self('abH23好rp1')
-
写一个自己的rjust函数,创建一个字符串的长度是指定长度,原字符串在新字符串中右对齐,剩下的部分用指定的字符填充
例如: 原字符:'abc' 宽度: 7 字符:'^' 结果: '^^^^abc'
原字符:'你好吗' 宽度: 5 字符:'0' 结果: '00你好吗'
def rjust(str1: str, width: int, fill_char: str):
le = len(str1)
# 处理指定宽度比原字符串宽度小
if width < le:
width = le
# 处理字符长度不是1的情况
if len(fill_char) != 1:
raise ValueError
new_str = fill_char*(width-le) + str1
print(new_str)
rjust('abc', 6, '=') # ===abc
-
写一个自己的index函数,统计指定列表中指定元素的所有下标,如果列表中没有指定元素返回-1
例如: 列表: [1, 2, 45, 'abc', 1, '你好', 1, 0] 元素: 1 结果: 0,4,6 列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权'] 元素: '赵云' 结果: 0,4 列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权'] 元素: '关羽' 结果: -1 def index_self(list, char): flag = False for index in range(len(list)): if list[index] == char: print(index) flag = True if flag == False: print(-1) index_self([1, 2, 45, 'abc', 1, '你好', 1, 0], 1) index_self(['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权'], '赵云') index_self(['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权'], '关羽')
-
写一个自己的len函数,统计指定序列中元素的个数
例如: 序列:[1, 3, 5, 6] 结果: 4 序列:(1, 34, 'a', 45, 'bbb') 结果: 5 序列:'hello w' 结果: 7 def len_self(char): total = 0 for i in char: total += 1 print(total) len_self([1, 3, 5, 6]) len_self((1, 34, 'a', 45, 'bbb')) len_self('hello w')
-
写一个自己的max函数,获取指定序列中元素的最大值。如果序列是字典,取字典值的最大值
例如: 序列:[-7, -12, -1, -9] 结果: -1 序列:'abcdpzasdz' 结果: 'z' 序列:{'小明':90, '张三': 76, '路飞':30, '小花': 98} 结果: 98 def max1(seq): if type(seq) == dict: seq = seq.values() if type(seq) not in (list, tuple): seq = list(seq) temp = seq[0] for item in seq[1:]: if item > temp: temp = item print(f'最大值:{temp}') max1([23, 45, 67, 2]) # 最大值:67 max1({'a': 100, 'b': 34, 'c': 50}) # 最大值:100 max1({23, 770, 98}) # 最大值:770
-
写一个函数实现自己in操作,判断指定序列中,指定的元素是否存在
例如: 序列: (12, 90, 'abc') 元素: '90' 结果: False 序列: [12, 90, 'abc'] 元素: 90 结果: True def in_self(list, char): flag = False for index in range(len(list)): if list[index] == char: flag = True if flag: print(True) else: print(False) in_self((12, 90, 'abc'), '90') in_self([12, 90, 'abc'], 90)
-
写一个自己的replace函数,将指定字符串中指定的旧字符串转换成指定的新字符串
例如: 原字符串: 'how are you? and you?' 旧字符串: 'you' 新字符串:'me' 结果: 'how are me? and me?' def replace(str1: str, old: str, new: str): s = str1.split(old) re = new.join(s) print(re) s1 = 'how are you? and you?' replace(s1, 'you', 'me') # how are me? and me?