Skip to content
This repository has been archived by the owner on Nov 18, 2020. It is now read-only.

Commit

Permalink
Update 标签过滤.py
Browse files Browse the repository at this point in the history
  • Loading branch information
manakanemu committed Jun 6, 2019
1 parent d9c4e3a commit fff5d7b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 标签过滤.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ def main():
best_tags[3] = message
# print('{:<19}\t{:<9}\t其中包含的5星、4星、全部干员数分别为:{}'.format('覆盖5星干员最多的标签组合:', best_tags[0],str(best[0][0])+' '+str(best[0][1])+' '+str(best[0][2])))
# print('{:<19}\t{:<9}\t其中包含的5星、4星、全部干员数分别为:{}'.format('覆盖4星干员最多的标签组合:', best_tags[1],str(best[1][0])+' '+str(best[1][1])+' '+str(best[1][2])))
# print('{:<19}\t{:<9}\t其中包含的5星、4星、全部干员数分别为:{}'.format('覆盖5星和4星干员最多的标签组合:', best_tags[2],str(best[2][0])+' '+str(best[2][1])+' '+str(best[2][2])))
# print('{:<19}\t{:<9}\t其中包含的5星、4星、全部干员数分别为:{}'.format('覆盖全部干员最多的标签组合:', best_tags[3],str(best[3][0])+' '+str(best[3][1])+' '+str(best[3][2])))
# print('{:<19}\t{:<9}\t其中包含的5星、4星、全部干员数分别为:{}'.format('覆盖5星和4星干员最多的标签组合:', best_tags[3],str(best[3][0])+' '+str(best[3][1])+' '+str(best[3][2])))
# print('{:<19}\t{:<9}\t其中包含的5星、4星、全部干员数分别为:{}'.format('覆盖全部干员最多的标签组合:', best_tags[2],str(best[2][0])+' '+str(best[2][1])+' '+str(best[2][2])))
print('{:<19}\t{:<9}'.format('覆盖5星干员最多的标签组合:', best_tags[0]))
print('{:<19}\t{:<9}'.format('覆盖4星干员最多的标签组合:', best_tags[1]))
print('{:<19}\t{:<9}'.format('覆盖5星和4星干员最多的标签组合:', best_tags[2]))
print('{:<19}\t{:<9}'.format('覆盖全部干员最多的标签组合:', best_tags[3]))
print('{:<19}\t{:<9}'.format('覆盖5星和4星干员最多的标签组合:', best_tags[3]))
print('{:<19}\t{:<9}'.format('覆盖全部干员最多的标签组合:', best_tags[2]))
except:
traceback.print_exc()

Expand Down

0 comments on commit fff5d7b

Please sign in to comment.