行业首配48V柴油混动 首测火星全尺寸皮卡
8月11日,“LIVEINLOVE热爱不设限”2023火星皮卡探索之旅,在北京金海湖
(相关资料图)
一:考察的主要知识点:
类型的转换 :先由元组--字符串--最后到列表实现数据排序(写代码前要梳理好思路)
1. 实现数据排序:
def f(*args): # *args 不定长数据 print(args) # 输出的是元组 ("23,45,2,4,5",) print(args[0],type(args)) # 23,45,2,4,5o=args[0] # 字符串 # for i in o: # print(i) li=o.split(",") # 把字符串切割成列表,列表里面的元素都是字符转需要类型转换,然后依次加入新的列表里面实现排序 print(li) # ["23", "45", "2", "4", "5"] print("-------------------------") oli=[] # 定义一个空列表 for i in li: oli.append(int(i)) print(sorted(oli)) # [2, 4, 5, 23, 45]inp=input("请输入排序的数据:") # 23,45,2,4,5f(inp)
运行截图:
2.通过一个参数来决定是正向排序还是倒叙排序(写代码前要梳理好思路)
""" 1、定义函数def 2、接受数据 ---参数===不定长参数 3、再来一个参数来决定是正向还是反向---if 4、sorted reversed """
def f(i,*args): if i: # i为True,非0,不为空 none 正向 pass else: # 反向 pass
代码块:
def f(i,*args): if i: # i为True,非0,不为空 ,不为none---- 正向 # print(sorted(args)) return sorted(args) else: # 反向 # print(list(reversed(sorted(args)))) return list(reversed(sorted(args)))# f(0,3,1,7,2) # 调用函数a=f(0,3,1,7,2) # 调用函数print(a)
代码截图:
标签: