摘要: s.capitalize() s.upper() s.lower() s.swapcase() s.title() s.center(20,"#") s.expandtabs() len(s) s.startwith("a",0,5) s.endwith("a",0,5) s.strip(" ") 阅读全文
posted @ 2019-05-30 13:47 谭文章 阅读(149) 评论(0) 推荐(0) 编辑
摘要: int: bool: 类型转换: str到int有条件,str必须是数字, "123e"是错误的 bool转换为int类型,需要int(x) 结果: 结果: 空字符串不要加空格, ValueError:语法错误 阅读全文
posted @ 2019-05-30 00:23 谭文章 阅读(185) 评论(0) 推荐(0) 编辑