摘要:
#!/usr/bin/env python# -*- coding: utf-8 -*-# 2/10/16 base trans. wrote by srcdog on 20th, April, 2009# ld elements in base 2, 10, 16.import os,sys# global definition# base = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F]base = [str(x) for x in range(10)] + [ chr(x) for x in range(ord('A') 阅读全文
摘要:
颜色输出模块:termcolorhttp://pypi.python.org/pypi/termcolorfrom termcolor import coloredrandom 的 学习:#!/usr/bin/env python# -*- encoding: utf-8 -*import randomfrom termcolor import coloredbuytimes = 1try: times = input('想买几注(默认一注): ')except: times = 1while buytimes <= times: red = map(str,ran... 阅读全文