字符串常用操作 移除空白 分割 长度 索引 切片 class str(basestring): """ str(object='') -> string Return a nice string representation of the object. If the argument is a string, the return value is the same object. """ def capitalize(self): &q…
day3 数据类型 @上节内容补充 每周一个思维导图-xmind.exe in / not in #示例:(是否包含敏感字符)while True: text = input('请输入你要说的话:') if '傻逼'in text: print('包涵敏感字符') 优先级:优先进行数学运算,再进行逻辑运算. 整型 python 2 在32位机器上,取值范围为-2147483648-2147483647 在64位系统上,取值范围为-9223372036854775808…