python小记-2
2020-12-13 16:30
标签:ext read 转义 tle size mem ever 排列 font list.append(‘XXX‘) ——添加元素到列表 list.extend( [ ‘ xx‘ , ‘yy‘ ] )——将多个元素追加到列表 list .insert ( 1 ,‘xxx‘ )——将元素插入到指定位置 x , y , z = z ,y ,x in —— 用于检查一个值是否在序列中 type() / isinstance ()——判断变量类型 例: member =[‘a‘ , ‘b‘ , ‘c ‘] member.remove(‘a‘) member.pop(1) ——(把第二个元素从member中取出,被取出元素在列表中不再有) # name=member.pop(1) 是可以的 例: list 1 =[ i*i for i in range (10) ] —— list 1 = [ 0,1,4,9,16,25,36,49,64,81] 等价于:list 1 = [ ] for i in range (10): list 1. append(i*i) tuple 中 " , " 是关键 x , y , z =1 , 2 , 3 type (x) = h= x , y , z type (h)= 例:tuple1 [:6]+("xxx" , ) + tuple2 [6:] str1 [:6] + ‘xxx‘ + str1 [6:] 字符串的方法及注释 https://fishc.com.cn/forum.php?mod=viewthread&tid=38992&extra=page%3D1%26filter%3Dtypeid%26typeid%3D403 字符串格式化符号含义及转义字符含义 https://fishc.com.cn/forum.php?mod=viewthread&tid=92997&extra=page%3D1%26filter%3Dtypeid%26typeid%3D403 s 为字符串 s.isalnum() 所有字符都是数字或者字母,为真返回 Ture ,否则返回 False 。 s.isalpha() 所有字符都是字母,为真返回 Ture ,否则返回 False 。 s.isdigit() 所有字符都是数字,为真返回 Ture ,否则返回 False。 s.islower() 所有字符都是小写,为真返回 Ture ,否则返回 False 。 s.isupper() 所有字符都是大写,为真返回 Ture ,否则返回 False 。 s.istitle() 所有单词都是首字母大写,为真返回 Ture ,否则返回 False。 s.isspace() 所有字符都是空白字符,为真返回 Ture ,否则返回 False 。 max() min() sum()——sum(list1, 8)——将list1里数字元素相加后再加上8 sorted()——从小到大排列 list(reversed(numbers)) list(enumerate(numbers)) ——生成每个元素的index值和item值所组成的元组 list(zip(a , b) )——返回a , b 里各个参数组成的元组 python小记-2 标签:ext read 转义 tle size mem ever 排列 font 原文地址:https://www.cnblogs.com/Aurakkk-8/p/11620374.html列表
元组
元组和字符串的更改、更新
字符串