摘要:
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(" ") 阅读全文
摘要:
int: bool: 类型转换: str到int有条件,str必须是数字, "123e"是错误的 bool转换为int类型,需要int(x) 结果: 结果: 空字符串不要加空格, ValueError:语法错误 阅读全文