- 编写函数,求1+2+3+…N的和
def sum1(n):
if n == 1:
return 1
else:
return n + sum1(n - 1)
print(sum1(int(input('输入N:'))))
- 编写一个函数,求多个数中的最大值
def max1(*n):
max_num = list(n)[0]
for x in n:
if x > max_num:
max_num = x
return max_num
print(max1(1, 3, 5, 8, 10, 55, 99, 58))
- 编写一个函数,实现摇骰子的功能,打印N个骰子的点数和
import random
def sum1(n):
score = random.randint(1, 6)
if n == 1:
return score
else:
return score + sum1(n - 1)
n = int(input('输入N:'))
print('%d个骰子点数和:%d' % (n, sum1(n)))
- 编写一个函数,交换指定字典的key和value。
例如:dict1={'a':1, 'b':2, 'c':3} --> dict1={1:'a', 2:'b', 3:'c'}
# noinspection PyShadowingNames
def exchange(dict1):
for key in list(dict1):
dict1[dict1[key]] = key
del dict1[key]
return dict1
dict1 = {'a': 1, 'b': 2, 'c': 3}
print(exchange(dict1))
# def change_key_value(dic: dict):
# for key in dic.copy():
# dic[dic.pop(key)] = key
#
#
# dict1 = {'a': 1, 'b': 2, 'c': 3}
# change_key_value(dict1)
# print(dict1)
- 编写一个函数,提取指定字符串中所有的字母,然后拼接在一起产生一个新的字符串
例如: 传入'12a&bc12d-+' --> 'abcd'
def extract_alpha(str1):
str2 = ''
for x in str1:
if x.isalpha():
str2 += x
return str2
str1 = input('输入字符串:')
print(extract_alpha(str1))
- 写一个函数,求多个数的平均值
def mean(nums):
return sum(nums) / len(nums)
nums = [int(x) for x in input('输入多个数:').split()]
print(mean(nums))
- 写一个函数,默认求10的阶乘,也可以求其他数字的阶乘
def rank(n=10):
if n == 1:
return 1
else:
return n * rank(n - 1)
print(rank())
=====================注意:以下方法不能使用系统提供的方法和函数,全部自己写逻辑==============
- 写一个自己的capitalize函数,能够将指定字符串的首字母变成大写字母
例如: 'abc' -> 'Abc' '12asd' --> '12asd'
def capitalize(str1):
if 'a' <= str1[0] <= 'z':
str2 = chr(ord(str1[0]) - 32)
str1 = str2 + str1[1:]
return str1
str1 = 'abc'
print(capitalize(str1))
- 写一个自己的endswith函数,判断一个字符串是否已指定的字符串结束
例如: 字符串1:'abc231ab' 字符串2:'ab' 函数结果为: True
字符串1:'abc231ab' 字符串2:'ab1' 函数结果为: False
def endswith(str1, str2):
return str1[-1:-1 - len(str2):-1] == str2[-1::-1]
str1 = 'abc231ab'
str2 = 'ab1'
print(endswith(str1, str2))
- 写一个自己的isdigit函数,判断一个字符串是否是纯数字字符串
例如: '1234921' 结果: True
'23函数' 结果: False
'a2390' 结果: False
def isdigit(str1):
for x in str1:
if not '0' <= x <= '9':
return False
return True
str1 = '123492'
print(isdigit(str1))
- 写一个自己的upper函数,将一个字符串中所有的小写字母变成大写字母
例如: 'abH23好rp1' 结果: 'ABH23好RP1'
def upper(str1):
for x in str1:
if 'a' <= x <= 'z':
str1 = str1.replace(x, chr(ord(x) - 32))
return str1
str1 = 'abH23好rp1'
print(upper(str1))
- 写一个自己的rjust函数,创建一个字符串的长度是指定长度,原字符串在新字符串中右对齐,剩下的部分用指定的字符填充
例如: 原字符:'abc' 宽度: 7 字符:'^' 结果: '^^^^abc'
原字符:'你好吗' 宽度: 5 字符:'0' 结果: '00你好吗'
def rjust(str1, w, char):
return (w - len(str1)) * char + str1
str1 = input('原字符:')
w = int(input('宽度:'))
char = input('字符:')
print(rjust(str1, w, char))
- 写一个自己的index函数,统计指定列表中指定元素的所有下标,如果列表中没有指定元素返回-1
例如: 列表: [1, 2, 45, 'abc', 1, '你好', 1, 0] 元素: 1 结果: 0,4,6
列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权'] 元素: '赵云' 结果: 0,4
列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权'] 元素: '关羽' 结果: -1
def index(n, list1):
index_list = []
for x in range(len(list1)):
if str(list1[x]) == n:
index_list.append(str(x))
if not index_list:
index_list.append('-1')
return index_list
list1 = [1, 2, 45, 'abc', 1, '你好', 1, 0]
n = input('输入指定元素:')
print(','.join(index(n, list1)))
- 写一个自己的len函数,统计指定序列中元素的个数
例如: 序列:[1, 3, 5, 6] 结果: 4
序列:(1, 34, 'a', 45, 'bbb') 结果: 5
序列:'hello w' 结果: 7
def len(list1):
ct = 0
for _ in list1:
ct += 1
return ct
list1 = 'hello w'
print(len(list1))
- 写一个自己的max函数,获取指定序列中元素的最大值。如果序列是字典,取字典值的最大值
例如: 序列:[-7, -12, -1, -9] 结果: -1
序列:'abcdpzasdz' 结果: 'z'
序列:{'小明':90, '张三': 76, '路飞':30, '小花': 98} 结果: 98
def max(list1):
if type(list1) == dict:
max_num = list1[list(list1)[0]]
for x in list1.values():
if x > max_num:
max_num = x
else:
max_num = list1[0]
for x in list1:
if x > max_num:
max_num = x
return max_num
# list1 = {'小明':90, '张三': 76, '路飞':30, '小花': 98}
# list1 = [-7, -12, -1, -9]
list1 = 'abcdpzasdz'
print(max(list1))
- 写一个函数实现自己in操作,判断指定序列中,指定的元素是否存在
例如: 序列: (12, 90, 'abc') 元素: '90' 结果: False
序列: [12, 90, 'abc'] 元素: 90 结果: True
def in_(n , list1):
for x in list1:
if n == x:
return True
return False
list1 = (12, 90, 'abc')
n = '90'
print(in_(n, list1))
- 写一个自己的replace函数,将指定字符串中指定的旧字符串转换成指定的新字符串
例如: 原字符串: 'how are you? and you?' 旧字符串: 'you' 新字符串:'me' 结果: 'how are me? and me?'
def replace(str1, oldstr, newstr):
str2 = ''
oldstr_len = len(oldstr)
temp = str1[0]
for i in range(len(str1)):
if temp != str1[i]:
continue
if str1[i:i+oldstr_len] == oldstr:
str2 += newstr
temp = str1[i+oldstr_len]
else:
str2 += str1[i]
if i != len(str1) - 1:
temp = str1[i+1]
return str2
str1 = 'how are you? and you?'
oldstr = 'you'
newstr = 'me'
print(replace(str1, oldstr, newstr))
# def replace1(str1:str, old, new:str):
# str_list = str1.split(old)
# return new.join(str_list)
#
# print(replace1('youhow are you? and you? you', 'you', 'me'))
- 写四个函数,分别实现求两个列表的交集、并集、差集、补集的功能
# 交集
def intersection(A, B):
C = []
for i in A:
if i in B:
C.append(i)
return C
# 并集
def Union(A, B):
C = B[:]
for i in A:
if i not in B:
C.append(i)
return C
# 差集
def Difference_set(A, B):
C = []
for i in A:
if i not in B:
C.append(i)
return C
# 补集
def Complement_set(A, B):
C = []
for i in B:
if i not in A:
return '不能求补集'
for i in A:
if i not in B:
C.append(i)
return C
A = [1, 2, 3, 8]
B = [1, 2, 3, 4, 5]
print('差集:', Difference_set(A, B))
print('并集:', Union(A, B))
print('补集:', Complement_set(A, B))
print('交集:', intersection(A, B))