摘要: 1、remove()list.remove('xxx') #xxx是list中第一个匹配的值2、pop(index)list.pop(index) #index从0开始,不写index则删除最后一个元素 3、deldel list[0] 阅读全文
posted @ 2022-02-07 21:23 liulj0713 阅读(1175) 评论(0) 推荐(0) 编辑
摘要: 小明的成绩从去年的72分提升到了今年的85分,请计算小明成绩提升的百分点s1 = 72s2 = 85r = (s2-s1)/s1*100print(f'成绩提高了{r:.1f}%') #f-string:使用以f开头的字符串,称之为f-string,它和普通字符串不同之处在于,字符串如果包含{xxx 阅读全文
posted @ 2022-02-07 18:52 liulj0713 阅读(54) 评论(0) 推荐(0) 编辑
摘要: print('aa','bb','cc')print('aa','bb','cc',sep='')aa bb ccaabbcc 阅读全文
posted @ 2022-02-07 18:09 liulj0713 阅读(63) 评论(0) 推荐(0) 编辑
摘要: print(int("1.1"))ValueError: invalid literal for int() with base 10: '1.1'确定报错原因为参数有误,int()函数可以把数字字符串转化成int类型的数字,但是不能传入非数字的字符串更改为:print(int(float("1.1 阅读全文
posted @ 2022-02-07 14:13 liulj0713 阅读(1138) 评论(0) 推荐(0) 编辑
摘要: 勾选该选项 阅读全文
posted @ 2022-02-07 10:53 liulj0713 阅读(239) 评论(0) 推荐(0) 编辑