name = ‘de8ug‘city = ‘beijing‘info = name + ‘ ‘ + cityinfo‘de8ug beijing‘‘name: %s, place: %s‘%(name,city)                           ‘name: de8ug, place: beijing‘‘name:{},place:{}‘.format(name,city)                        ‘name:de8ug,place:beijing‘‘name:{nameA},place:{placeA}‘.format(nameA=name,placeA=city)  ‘name:de8ug,place:beijing‘f‘name:{name},place:{city}‘‘name:de8ug,place:beijing‘name = ‘de8ug‘name = ‘‘name‘‘name = ‘de8ug‘name.upper()  #大写‘DE8UG‘name.lower()  #小写‘de8ug‘name.capitalize() #首字母大写‘De8ug‘name = "python is cool"name.title()  #标题大写‘Python Is Cool‘name.strip(‘python‘) #去掉python(开头和结尾的空格或者字符串去掉)‘ is cool‘email = ‘de8ug#foxmail.com‘email.replace(‘#‘,‘@‘)    #email.replace(old,new)‘de8ug@foxmail.com‘email.split(‘#‘)        #去除分隔符,变成列表[‘de8ug‘, ‘foxmail.com‘]email.zfill(30)‘0000000000000de8ug#foxmail.com‘email.ljust(30,‘8‘)   #email.ljust(width.fillchar)  左对齐再填充‘de8ug#foxmail.com8888888888888‘email.rjust(20,‘*‘)   #右对齐再填充‘***de8ug#foxmail.com‘email.center(20,‘*‘)   #中间对齐再填充‘*de8ug#foxmail.com**‘1.字符串.方法()
‘de8ug‘.count(‘8‘)1name.isupper()  #判断是否为大写Falsename.islower()  #判断是否为小写Truepy = ‘python is cool‘py.index(‘is‘)   #查询在哪个位置7py.index(‘o‘)4py.find(‘is‘)7py.find(‘isaaa‘)   #所有不存在为-1-1dir(py)  #看有哪些方法可用[‘__add__‘,
 ‘__class__‘,
 ‘__contains__‘,
 ‘__delattr__‘,
 ‘__dir__‘,
 ‘__doc__‘,
 ‘__eq__‘,
 ‘__format__‘,
 ‘__ge__‘,
 ‘__getattribute__‘,
 ‘__getitem__‘,
 ‘__getnewargs__‘,
 ‘__gt__‘,
 ‘__hash__‘,
 ‘__init__‘,
 ‘__init_subclass__‘,
 ‘__iter__‘,
 ‘__le__‘,
 ‘__len__‘,
 ‘__lt__‘,
 ‘__mod__‘,
 ‘__mul__‘,
 ‘__ne__‘,
 ‘__new__‘,
 ‘__reduce__‘,
 ‘__reduce_ex__‘,
 ‘__repr__‘,
 ‘__rmod__‘,
 ‘__rmul__‘,
 ‘__setattr__‘,
 ‘__sizeof__‘,
 ‘__str__‘,
 ‘__subclasshook__‘,
 ‘capitalize‘,
 ‘casefold‘,
 ‘center‘,
 ‘count‘,
 ‘encode‘,
 ‘endswith‘,
 ‘expandtabs‘,
 ‘find‘,
 ‘format‘,
 ‘format_map‘,
 ‘index‘,
 ‘isalnum‘,
 ‘isalpha‘,
 ‘isdecimal‘,
 ‘isdigit‘,
 ‘isidentifier‘,
 ‘islower‘,
 ‘isnumeric‘,
 ‘isprintable‘,
 ‘isspace‘,
 ‘istitle‘,
 ‘isupper‘,
 ‘join‘,
 ‘ljust‘,
 ‘lower‘,
 ‘lstrip‘,
 ‘maketrans‘,
 ‘partition‘,
 ‘replace‘,
 ‘rfind‘,
 ‘rindex‘,
 ‘rjust‘,
 ‘rpartition‘,
 ‘rsplit‘,
 ‘rstrip‘,
 ‘split‘,
 ‘splitlines‘,
 ‘startswith‘,
 ‘strip‘,
 ‘swapcase‘,
 ‘title‘,
 ‘translate‘,
 ‘upper‘,
 ‘zfill‘]my_name =input(‘name: ‘)name: de8ug  my_name‘de8ug  ‘len(my_name)   #可以包含空格7type(my_name)strmy_name.strip()‘de8ug‘len(my_name.strip())5py = ‘python2 python3 python4 python8‘py[3]‘h‘py[-2]‘n‘py[:6]‘python‘py.index(‘2‘)6py[:py.index(‘2‘)]‘python‘something = ‘abcdefg1234567‘something[1:6:2]   #索引1到6 步长为2‘bdf‘something[4:]  #左边包括‘efg1234567‘something[:4]  #右边不包括‘abcd‘something[4::4]‘e26‘something[something.index(‘e‘):]‘efg1234567‘email = ‘de8ug@foxmail.com‘email.split(‘@‘)   #去除分隔符,变成列表[‘de8ug‘, ‘foxmail.com‘]email.index(‘@‘)5email[:email.index(‘@‘)]‘de8ug‘email.find(‘@‘)5email[email.find(‘@‘)+1:]   #左边包括‘foxmail.com‘原文地址:http://blog.51cto.com/13587169/2122231