def hexstring(x): if not isinstance(x, int): raise TypeError("x is not an integer") if x < 0: raise ValueError("x must be positive") base ...
確定! 回上一頁