时间:2022-04-27 点击: 次 来源:网络 作者:佚名 - 小 + 大
零基础学python到精通多长时间零基础学python图文版知乎怎么样
下载地址 https://share.weiyun.com/S11bpehi
资料目录 小甲鱼零基础学python视频全套96集 刘金玉零基础python入门到精通教程100集全套VIP精选 跟老齐学Python从入门到精通 电子工业出版社 首先看对列表的这些操作,其特点是在原处将列表进行了修改: >>> git_list ['qiwsir', 'github', 'io'] >>> git_list.append("python") >>> git_list ['qiwsir', 'github', 'io', 'python'] >>> git_list[1] 'github' >>> git_list[1] = 'github.com' >>> git_list ['qiwsir', 'github.com', 'io', 'python'] >>> git_list.insert(1, "algorithm") >>> git_list ['qiwsir', 'algorithm', 'github.com', 'io', 'python'] >>> git_list.pop() 'python' >>> del git_list[1] >>> git_list ['qiwsir', 'github.com', 'io'] 以上这些操作,如果用在str上都会报错,比如: >>> welcome_str 'Welcome you' >>> welcome_str[1]='E' Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'str' object does not support item assignment >>> del welcome_str[1] Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'str' object doesn't support item deletion >>> welcome_str.append("E") Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'str' object has no attribute 'append' 如果要修改一个str,不得不这样。 >>> welcome_str 'Welcome you' >>> welcome_str[0]+"E"+welcome_str[2:] #重新生成一个str 'WElcome you' >>> welcome_str #对原来的没有任何影响 'Welcome you' 其实,在这种做法中就是重新生成了一个str。 |
上一篇:零基础学python人工智能零基础学python pdf 西西百度网盘云
下一篇:没有了