摘要:
之前代码总行数735+133=868 内容回顾 列表:容器型数据类型,可以承载大量的数据,有序的数据 增: append 追加 insert 插入,按索引增 extend 迭代着追加 删: pop 按照索引删除,有返回值,返回 remove 按照元素删除 clear 清空 del 索引、切片(步长) 阅读全文
摘要:
回顾 int str bool str: s1='tangdaren123' 索引: s1[0] s1[-1] s1[:3] s1[:5:2] s1[-1:-4:-1] s1[-1:-6:-2] 常用操作方法: upper、lower startswith、endswith(返回bool) spli 阅读全文
摘要:
回顾 pycharm简单使用 while循环 结构 pass while实现打印1-2+3-4+……+99 格式化输出:针对str,让字符串中某些位置变为动态可传入的 % s str d digist i int %%第二个%转义 编码初识(二进制和文字对应关系) ASCLL GBK Unicode 阅读全文