Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/user/hh.py

14 lines
283 B
Python
Raw Normal View History

2020-06-13 12:43:43 +00:00
def hh(w):
2020-08-15 07:35:46 +00:00
if len(w) > 15:
2021-05-30 06:33:05 +00:00
w = [w[i:i+15] for i in range(0, len(w), 15)]
w = '-\n'.join(w)
return w
2020-08-15 07:10:30 +00:00
2020-09-19 10:35:13 +00:00
2020-08-15 07:10:30 +00:00
def hh1(w):
w = '理由“' + w + ''
if len(w) > 25:
2021-05-30 06:33:05 +00:00
w = [w[i:i+25] for i in range(0, len(w), 25)]
w = '-\n'.join(w)
return w