列表嵌套: 列表内嵌套列表 li = ['a','b',[1,2,3,["李白",'苏轼'],4,5],'c'] #取出"李白" print(li[2][3][0]) 列表内也可嵌套其他可变数据 元组: 只读列表,存大量的数据,可以索引,切片(步长) tu = ('a','b',[1,2,3],'c') # 列表的最外中括号改为小括号 元组只能读,不能增删改 元组内若有列表,列表本身不能删除,但可以更改列表内的元素 查看元组内所有元素: 循环打印: for i in
目录 1.问题描述 2.原因查找 3.问题解决 使用Markdown时,在有序列表中嵌套代码块引发了有序列表编号中断(重新从1开始)的问题,最终已解决. 1.问题描述 代码: 1. title text ``` code ``` 2. title text ``` code ``` 使用上述代码,显示的效果为: title text code title text code 很明显,代码块既没有缩进对齐,编号还被打断. 2.原因查找 Markdown高级帮助内容显示,若要插入代码块,应该使用4个
You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a concatenation of each word in words exactly once and without any intervening characters. Example 1: Input
python中的range()函数的功能hen强大,所以我觉得很有必要和大家分享一下 就好像其API中所描述的: If you do need to iterate over a sequence of numbers, the built-in function range() comes in handy. It generates arithmetic progressions 下面是我做的demo: #如果你需要遍历一个数字序列,可以是使用python中内建的函数range() #如下面