摘要:
1.1 select fengshu from table where name="张三" and kecheng="语文"; 1.2 update table set fengshu=23 where name="张三" and kecheng="语文"; 1.3 delete from tabl 阅读全文
摘要:
author:多测师_王sir def func(str): ''' :param str: 传入一个字符串"My name is Shopline,and i am 2,0000 days old" :return: ''' result = [] s = str.split() #先进行分割为列 阅读全文
摘要:
def func(list1): list2 =[] for i in range(len(list1)): sum = 1 for j in list1: sum*=j sum = sum//list1[i] list2.append(sum) print(max(list2)) value=[4 阅读全文