这是本人在学习python过程中总结的一些关于字符串的常用的方法. 文中引用了python3.5版本内置的帮助文档,大致进行翻译,并添加了几个小实验. isalnum S.isalnum() -> bool #字符串里所有的字符都是字母或者数字时返回True,否则返回False Return True if all characters in S are alphanumeric and there is at least one character in S, False otherwise.…
format常用格式化 tp1="i am {},age {},{}".format('LittlePage',18,'boy') tp2="i am {},age {},{}".format(*['LittlePage',18,'boy'])#学过c++的感觉是{}中传入的应该是指针,视频中没讲,自己个人认为 tp3='i am {0},age {1},really{1}'.format("LittlePage",18)#从索引0开始,一直传入…
# Strings have many methods wo can use rand_string=" life is a beautiful struggle " print("去除左边空格:",rand_string.lstrip()) print("去除右边的空格:",rand_string.rstrip()) print("去除两边的空格:",rand_string.strip()) print() rand_str…