This commit is contained in:
wenxianping
2018-09-01 00:28:48 +08:00
parent b88834cdfc
commit 4920a01fa2
3 changed files with 5 additions and 4 deletions

View File

@@ -41,12 +41,13 @@ def codexy(Ofset=None, is_raw_input=True):
if is_raw_input:
print(u"""
*****************
| 0 | 1 | 2 | 3 |
| 1 | 2 | 3 | 4 |
*****************
| 4 | 5 | 6 | 7 |
| 5 | 6 | 7 | 8 |
*****************
""")
Ofset = raw_input(u"按照上图提示输入对应的验证码: ")
print(u"验证码分为8个对应上面数字例如第一和第二张输入1, 2")
Ofset = raw_input(u"输入对应的验证码: ")
Ofset = Ofset.replace("", ",")
select = Ofset.split(',')
post = []