1.写一个函数将一个指定的列表中的元素逆序( 如[1, 2, 3] -> [3, 2, 1])(注意:不要使 表自带的逆序函数)
def hk_reverse(list1):
return list1[::-1]
或者
def hk_reverse(list1):
num_end = len(list1) - 1
num_start = 0
while num_start - num_end < 0:
list1[num_start], list1[num_end] = list1[num_end], list1[num_start]
num_end -= 1
num_start += 1
return list1
2.写一个函数,提取出字符串中所有奇数位上的字符
def get_str(str1: str)->str:
return str1[::2]
3.写一个匿名函数,判断指定的年是否是闰
leap_year = lambda y:bool(not y%4 and y%100 or not y%400)
或者
leap_year = lambda x:False if (x%4 or (x%400 and not x%100)) else True
4.使用递归打印:
n = 3的时候
@
@@@
@@@@@
n = 4的时候:
@
@@@
@@@@@
@@@@@@@
def hk_print(n):
num =7
def hk_fun(n):
if n==1:
print("@".center(num))
return
hk_fun(n-1)
n1=2*n-1
print((n1*"@").center(num))
hk_fun(n)
hk_print(4)
5.写函数,利用递归获取斐波那契数列1、1、2、3、5、8、13、21、34中的第 10 个数,并将该值返回给调用者。
def hk_list(n):
if n==1 or n==2:
return 1
return hk_list(n-2)+hk_list(n-1)
print(hk_list(10))
6.写一个函数,获取列表中的成绩的平均值,和最高分
def get_num(list1):
average=sum(list1)/len(list1)
max1=max(list1)
return average,max1
7.写函数,检查获取传入列表或元组对象的所有奇数位索引对应的元素,并将其作为新的列表返回给调用者
get_element = lambda tuple1:tuple1[1::2]
print(get_element((1,2,3)))
8.实现属于自己的字典update方法:用一个字典去更新另一个字典的元素(不能使用自带的update方法)
yt_update(字典1, 字典2)
def hk_update(dict1,dict2):
for i in dict2:
dict1[i]=dict2[i]
return dict1
print(hk_update({"1":2},{"1":3,"3":4}))
9.实现属于自己的items方法:将字典转换成列表,字典中的键值对转换成元祖。(不能使用items方法)
yt_items(字典)
例如:{'a': 1, 'b':2, 'c':3} ---> [('a', 1), ('b', 2), ('c', 3)]
def hk_items(dict1):
list1=[]
for i in dict1:
list1.append((i,dict1[i]))
return list1
print(hk_items({1:2,3:4}))