摘要: 1.encode函数的用法及实例 encode()的语法 :str.encode([encoding="utf-8"][,errors="strict"]) 参数说明: str:表示需要编码的字符串,用引号引开。 encoding="utf-8":参数可选写,默认编写为"utf-8",常用的是utf 阅读全文
posted @ 2022-08-07 17:59 yaya_zhang 阅读(741) 评论(0) 推荐(0) 编辑
摘要: for 循环,它常用于遍历字符串、列表、元组、字典、集合等序列类型,逐个获取序列中的各个元素。 for 迭代变量 in 字符串|列表|元组|字典|集合: 代码块 add = "www.qinjl.com" # for循环,遍历 add 字符串 for ch in add: print(ch, end 阅读全文
posted @ 2022-08-07 14:46 yaya_zhang 阅读(129) 评论(0) 推荐(0) 编辑