st01 = 1000
st = str(st01)
st02 = 'chengdu'
st = str(b'abc',encoding='utf-8')
st03 = 'henan is very good'
st = st03.capitalize()
st04 = 'ThewaetherIS Very HOt'
st = st04.casefold()
st05 = 'Welcome'
st = st05.center(20,'-')
st06 = 'abcdefghijkabcdefghijk'
st = st06.count('ka',1,-1)
st07 = '河南鄭州'
st = st07.encode('utf-8')
st08 = 'Welcome'
st = st08.endswith('come',3)
st09 = 'Welcome\tto\tBeiJing\t'
st = st09.expandtabs(4)
st10 = 'abcdefghijkabcdefghijk'
st = st10.find('abc',10,-1)
st11= '{},你好,歡迎來到{}.'
st = st11.format('韓梅梅','北京')
st11 = '{1},你好,歡迎來到{0}.'
st = st11.format('北京','韓梅梅')
st11 = '{name},你好,歡迎來到{city}.'
st = st11.format(city='北京',name='韓梅梅')
st13 = '韓梅梅,你好,歡迎來到北京.'
st = st13.index('歡迎',1,-1)
st14 = '12345a和'
st = st14.isalnum()
st15 = 'aaaa和'
st = st15.isalpha()
st16 = '北京'
st = st16.isascii()
st17 = '1234.1'
st = st17.isdecimal()
st18 = '1235'
st = st18.isdigit()
st19 = 'def'
st = st19.isidentifier()
st20 = 'beijing'
st = st20.islower()
st21 = '1212'
st = st21.isnumeric()
st22 = str(set((1,2,3)))
st = st22.isprintable()
st23 = ' '
st = st23.isspace()
st24 = 'The Title Is Henan'
st = st24.istitle()
st25 = 'HELLOq'
st = st25.isupper()
st26 = ('www','baidu','com')
st = '.'.join(st26)
st27 = 'Hello'
st = st27.ljust(20,'-')
st28 = "Hello 韓梅梅,Welcome"
st = st28.lower()
st29 = ' hello welcome -'
st = st29.lstrip('-')
st30 = 'hello,韓梅梅 welcome'
st = st30.partition(',')
st31 = 'hello,韓梅梅 welcome'
st = st31.removeprefix('hello')
st32 = 'hello,韓梅梅 welcome'
st = st32.removesuffix('welcome')
st33 = 'hello,韓梅梅 welcome'
st = st33.replace('梅梅','雪雪')
st34 = 'abcdefghijkabcdefghijk'
st = st34.rfind('d',1,-1)
st35 = 'abcdefghijkabcdefghijk'
st = st35.rindex('d',1,-1)
st36 = 'rjust with tab'
st = st36.rjust(30,'-')
st37 = '河南省信陽'
st = st37.rpartition('省')
st38 = 'hello,Lee,welcome,to,china'
st = st38.rsplit(',',2)
st39 = 'welcome --'
st = st39.rstrip('-')
st40 = 'hello,Lee,welcome,to,china'
st = st40.split(',',2)
st41 = 'Hello Lee \n Welcom to china'
st = st41.splitlines()
st42 = 'helloleewelcometochina'
st = st42.startswith('hello')
st43 = ' helloleewelcometochina '
st = st43.strip(' ')
st44 = 'Hello Lee,welcome to china'
st = st44.swapcase()
st45 = 'the title is test'
st = st45.title()
st46 = 'ETC 快E速通過'
ss = str.maketrans('ETC','電子記')
st = st46.translate(ss)
st47 = 'the title is test'
st = st47.upper()
st48 = '121.88'
st = st48.zfill(12)
st49 = str.maketrans('abc','ABC')
st = st49
st50 = 'chengdu'
st = st50[::-1]
print(st)