本文整理汇总了Python中convert.Convert.exp_to_hexadecimal方法的典型用法代码示例。如果您正苦于以下问题:Python Convert.exp_to_hexadecimal方法的具体用法?Python Convert.exp_to_hexadecimal怎么用?Python Convert.exp_to_hexadecimal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类convert.Convert
的用法示例。
在下文中一共展示了Convert.exp_to_hexadecimal方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: is_relative_cp
# 需要导入模块: from convert import Convert [as 别名]
# 或者: from convert.Convert import exp_to_hexadecimal [as 别名]
def is_relative_cp(self,cp,arg):
hex = Hexadecimal()
c = Convert()
res_hex = hex.subs_minus(arg,cp)
sign = res_hex[1]
res_hex = res_hex[0]
res = int(c.to_decimal(res_hex))
if sign == "-":
res = (res ^ 4095)+1
res = res * -1
if res <= 2047 and res >= -2048:
return c.exp_to_hexadecimal(res)
else:
return None