由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
_Python版 - Python里二进制,八进制,和十六进制数的用法
相关主题
想问一下史版的牛人关于十近制part time job opportunity near MIT campus - Customer Services Repres
关于英语对算术能力的负面影响(3)schwab太有钱了~~
3年级数学怎么教一身冷汗啊
教育部袁贵仁:“985”“211”已关大门关于xin
困扰我的一个小问题,很久了有人统计过从RRFE到case approve之间最长的有多久吗
来美国之后明白为什么秦始皇要统一度量衡了半自动win.308兼容机攒机计划
ANSI C下如何转换十进制小数为十六进制小数逛店笔记
[转载] Re: Tcl questionDesignated Marksman Rifle
相关话题的讨论汇总
话题: python话题: octal话题: binary话题: hex话题: repr
1 (共1页)
p**z
发帖数: 65
1
没人发帖好冷清。我来发几个平时用Python攒的小窍门吧。笔记是英文的懒得翻译了
Python tips: binary, octal, and hex numbers
To use literal values in binary, octal, or hex (works since Python 2.6):
binary: 0b1111
octal: 0o105
hex: 0xffff
To convert an input string that is the representation of a number in a
specific base to an integer:
int('1111', 2)
int('105', 8)
int('ffff', 16)
To output the string representation of a number in a specific base:
If converting to binary, numpy.binary_repr() is the most efficient
If converting to any base, numpy.base_repr() is the one to use
1 (共1页)
相关主题
Designated Marksman Rifle困扰我的一个小问题,很久了
关于厂家和枪型的专利问题来美国之后明白为什么秦始皇要统一度量衡了
雪上加霜:BB的也backorder了ANSI C下如何转换十进制小数为十六进制小数
a few very simple python commands[转载] Re: Tcl question
想问一下史版的牛人关于十近制part time job opportunity near MIT campus - Customer Services Repres
关于英语对算术能力的负面影响(3)schwab太有钱了~~
3年级数学怎么教一身冷汗啊
教育部袁贵仁:“985”“211”已关大门关于xin
相关话题的讨论汇总
话题: python话题: octal话题: binary话题: hex话题: repr