51dev.com IT技术开发者社区

51dev.com 技术开发者社区

python 获取列表大于指定长度的元素

python 获取列表大于指定长度的元素

 deflong_words(n,str):word_len=[]txt=str.split("")forxintxt:iflen(x)>n:word_len.append(x)returnword_lenprint(long_words(3,"Thequickbrownfoxjum...

python 通过列表元素值截取列表并获取长度

python 通过列表元素值截取列表并获取长度

 defcount_range_in_list(li,min,max):ctr=0forxinli:ifmin<=x<=max:ctr+=1returnctrlist1=[10,20,30,40,40,40,70,80,99]print(count_range_in_list(...

python 判断列表字符串元素首尾字符是否相同

python 判断列表字符串元素首尾字符是否相同

 defmatch_words(words):ctr=0forwordinwords:iflen(word)>1andword[0]==word[-1]:ctr+=1returnctrprint(match_words(['abc','xyz','aba','122771']))&n...

python 判断两个列表是否有公共元素

python 判断两个列表是否有公共元素

 defcommon_data(list1,list2):result=Falseforxinlist1:foryinlist2:ifx==y:result=Truereturnresultprint(common_data([1,2,3,4,5],[5,6,7,8,9]))print(c...

python 获取列表的键值对

python 获取列表的键值对

 nums=[5,15,35,8,98]fornum_index,num_valinenumerate(nums):print(num_index,num_val) ...

python 去除字符串两端的引号

python 去除字符串两端的引号

 a='"srting"'print(a)b=eval(a)print(b)输出"srting"srting ...

python 判断列表的包含关系

python 判断列表的包含关系

 defis_Sublist(l,s):sub_set=Falseifs==[]:sub_set=Trueelifs==l:sub_set=Trueeliflen(s)>len(l):sub_set=Falseelse:foriinrange(len(l)):ifl[i]==s[0]...

django 常用字段类型

django 常用字段类型

 <1>CharField#字符串字段,用于较短的字符串.#CharField要求必须有一个参数maxlength,用于从数据库层和Django校验层限制该字段所允许的最大字符数.<2>IntegerField#用于保存一个整数.<3>FloatFiel...

python 列表字符串元素乱序

python 列表字符串元素乱序

 fromrandomimportshufflecolor=['1','2','3','4','5']shuffle(color)print(color) ...

python 随机选择字符串中的一个字符

python 随机选择字符串中的一个字符

 importrandomprint(random.choice('abcdefghijklm')) ...

python 获取复数的实部虚部

python 获取复数的实部虚部

 #Initializeacomplexnumbercn=complex(2,3)print("ComplexNumber:",cn)print("ComplexNumber-Realpart:",cn.real)print("ComplexNumber-Imaginarypart:",c...

python 将一个列表乱序

python 将一个列表乱序

 importrandomnums=[1,2,3,4,5,6,7]random.shuffle(nums)print(nums) ...

python 浮点数转分数

python 浮点数转分数

 fromfractionsimportFractionvalue=4.2print(Fraction(value).limit_denominator()) ...

python 浮点数取绝对值

python 浮点数取绝对值

 importmathprint(math.fabs(-2.1))print(math.fabs(-0.0))print(math.fabs(10.1))print(math.fabs(0.0)) ...

python 复数的数学四则运算

python 复数的数学四则运算

 print("Additionoftwocomplexnumbers:",(4+3j)+(3-7j))print("Subtractionoftwocomplexnumbers:",(4+3j)-(3-7j))print("Multiplicationoftwocomplexnumber...