时间:2022-04-27 点击: 次 来源:网络 作者:佚名 - 小 + 大
计算机零基础学python用什么app哪个app比较好需要下载什么软件
下载地址 https://share.weiyun.com/S11bpehi
资料目录 小甲鱼零基础学python视频全套96集 刘金玉零基础python入门到精通教程100集全套VIP精选 跟老齐学Python从入门到精通 电子工业出版社 在字符串中,每个元素只能是字符,在列表中,元素可以是任何类型。前面见到的大多是数字或者字符,其实还可以这样: >>> matrix = [[1,2,3],[4,5,6],[7,8,9]] >>> matrix = [[1,2,3],[4,5,6],[7,8,9]] >>> matrix[0][1] 2 >>> mult = [[1,2,3],['a','b','c'],'d','e'] >>> mult [[1, 2, 3], ['a', 'b', 'c'], 'd', 'e'] >>> mult[1][1] 'b' >>> mult[2] 'd' 以上显示了多维列表以及访问方式。在多维的情况下,里面的列表被当成一个元素对待。 列表和字符串的互相转化 以下涉及split()和join()两个函数,在前面字符串部分已经见过。一回生,二回熟,特别是在已经学习了列表的基础上见面,应该有更深刻的理解。 str.split() 这个内置函数实现的是将str转化为list。其中str=""是分隔符。 请先在交互模式下做如下操作: >>>help(str.split) 得到了对这个内置函数的完整说明。特别强调:这是一种非常好的学习方法(本书的特色就是教给读者一些方法,所谓“授人以鱼不如授人以渔”)。 split(...)S.split([sep[,maxsplit]])->list of strings Return a list of the words in the string S,using sep as the delimiter string.If maxsplit is given,at most maxsplit splits are done.If sep is not specified or is None,any whitespace string is a separator and empty strings are removed from the result. 不管是否看懂上面这段话,都来看一下例子。 >>> line = "Hello.I am qiwsir.Welcome you." >>> line.split(".") #以英文的句点为分隔符 ['Hello', 'I am qiwsir', 'Welcome you', ''] #这个1,就是表达了官方文档中的:If maxsplit is given, at most maxsplit splits are done. >>> line.split(".",1) ['Hello', 'I am qiwsir.Welcome you.'] >>> name = "Albert Ainstain" #也有可能用空格作为分隔符 >>> name.split(" ") ['Albert', 'Ainstain'] 下面的例子,让你更有点惊奇了。 >>> s = "I am, writing\npython\tbook on line" #这个字符串中有空格、逗号、换行\n、tab缩进\t 符号 >>> print s I am, writing python book on line >>> s.split() #用split(),但是括号中不输入任何参数 ['I', 'am,', 'writing', 'python', 'book', 'on', 'line'] 如果split()不输入任何参数,显示就是见到任何分割符号,就用其分割了。 |
上一篇:零基础学python到精通多长时间零基础学python图文版知乎怎么样
下一篇:没有了