# 说人话就是,
# 编号①②③ ord( '①' ): 9312
# z=input('''''')
b= input('''请输入切片位置:''')
d= input('''请输入回车位置:''')
z_list = z.strip().split(d)
for index,value in enumerate(z_list):
print('{}.{}'.format( chr( 9312+index ) , value.split(b)[1] ))
这里只能实现①种编号
# 假设我要print打印,(1),[1]-1,☆1,〖1〗<1>,
怎么自动检测出来?
9312+0~9312+19 unicode对应字符①~⑳
9332+0~9332+19 unicode对应字符⑴~⒇
9352+0~9352+19 unicode对应字符⒈~⒛
请点击我的“同问回答”:2022-11-20,问题回答:“自定义序列index字符,查看详细解析。