数字:int 12,3,45 + - * / ** int: bit_lenth()转化为2进制的最小位数。 % 取余数 ps:type() 字符串转化成数字:int(str) 条件:str必须是数字组成的。 数字转化成字符串:str(int) 字符串:str,python当中凡是用引号引起来的都是字符串。 可相加:字符串的拼接。 可相乘:str * int bool:布尔值。
a2="alex is alph"ret2= a2.count("al")#计算子序列个数,def count(self, sub, start=None, end=None):,可定义开始和结束位置。S.count(sub[, start[, end]]) -> intret3 = a2.count("a", 0)print(ret2, ret3) ret4= a2.endswith("alp", 0,-1)#""" 是否以 xxx 结束 """endswith...
2 运算符3 基本数据类型整型:int字符串:str列表:list元组:tuple字典:dic4 for enumrate xrange range1.1. 列表中的十六进制或者unicode展示位中文1 2 3 4 5 attr=(['CN', '0', '\xe6\xb5\x99\xe6\xb1\x9f', '\xe6\x9d\xad\xe5\xb7\x9e', 'ALIBABA'], ['CN', '0', 'qita', '0', ...
常用数据类型int数字 eg:1,2str字符eg: ‘a’,”hello!” bool 布尔(真假) eg: True,Falselist列表eg: [1,2,4]tupple元组eg: {1,3,”hi”}dict字典eg: {1:a,2:b,3:”hi”}方法原理 Python装饰器、生成器、迭代器、魔术方法总结 ()方法返回的是一个迭代器。 下图展示了可迭代对象: 举例说明迭代...
一 大纲 2 运算符 3 基本数据类型 整型:int 字符串:str 列表:list 元组:tuple 字典:dic 4 for enumrate xrange range 上节内容回顾: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2