摘要: # 判断对象是否可调用,可调用,即对象后加() s = "abc" ls = [1,2,3] def f(): pass class F(): pass t =(s, ls, f, F) for obj in t: if callable(obj): print(obj, True) else: print(obj, Fal... 阅读全文
posted @ 2019-01-31 10:21 怒放吧! 阅读(130) 评论(0) 推荐(0) 编辑
摘要: # source是字符串,则使用str.encode()转换 b = bytes('abc',encoding='utf-8',errors='strict') print(b,b[0]) # bytes对象不可变 try: b[0] = 100 except TypeError as err: print('it is immutable.so',err) 阅读全文
posted @ 2019-01-31 10:11 怒放吧! 阅读(159) 评论(0) 推荐(0) 编辑
摘要: bytearray: 类,可变字节数组 阅读全文
posted @ 2019-01-31 09:31 怒放吧! 阅读(203) 评论(0) 推荐(0) 编辑
摘要: bool类 参数基于“标准真值测试程序(Truth testing procedure)”进行转换 bool 是 Numeric Types(int,float,complex)的子类,它不可派生出子类 Boolean Values:布尔值,布尔类的唯一实例 True/False。 阅读全文
posted @ 2019-01-30 20:22 怒放吧! 阅读(1132) 评论(0) 推荐(0) 编辑
我的