# 判断字符串操作的方法 # 判断字符串 的方法 # isidentifier() 判断指定的字符串是不是合法的标识符 # isspace() 判断指定的字符串是否全部由空白字符组成(回车、换行,水平制表符) # isalpha() 判断指定的字符串是否全部由字母组成 # isdecimal() 判断指定字符串是否全部由十进制的数字组成 # isnumeric( 判断指定的字符串是否全部由数字组成 # isalnum() 判断指定字符串是否全部由字母和数字组成 # 字符串替换 # replace() 第1个参数指定被替换的子串,第2个参数指定替换子串的字符串,该方法返回替换后得到。 的字符串,替换前的字符串不发生变化,调用该方法时可以通过第3个参数指定最大替换次 数 # 字符串的合并 # join() 将列表或元组中的字符串合并成一个字符串 s='hello,Python' print('1',s.isidentifier()) print('-----------------') s1='hello.Python' print(s.replace('Python','Java')) s2='hello.Python,Python,Python' print(s2.replace('Python','Java',2)) lst=['hello','java','Python'] print('|'.join(lst)) print(''.join(lst)) t=('hello','java','python') print(''.join(t)) print('*'.join('python'))